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,10 @@
package com.dota.nexus.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dota.nexus.entity.Goal;
import com.dota.nexus.mapper.GoalMapper;
import com.dota.nexus.service.GoalService;
public class GoalServiceImpl extends ServiceImpl<GoalMapper, Goal> implements GoalService {
}