Files
Nexus-api/src/main/java/com/dota/nexus/mapper/GoalMapper.java

10 lines
234 B
Java
Raw Normal View History

2025-10-08 09:50:13 +08:00
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> {
}