Files
Nexus-api/src/main/java/com/dota/nexus/mapper/GoalMapper.java
2025-10-08 09:50:13 +08:00

10 lines
234 B
Java

package com.dota.nexus.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dota.nexus.entity.Goal;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface GoalMapper extends BaseMapper<Goal> {
}