mybatis-plus

This commit is contained in:
jsh
2025-10-08 09:50:13 +08:00
parent fe06b792b3
commit a5e629cbbd
11 changed files with 131 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
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> {
}