部分功能重写,增加,去除冗余

This commit is contained in:
liumengyu
2026-08-20 18:03:46 +08:00
parent c4875e86e5
commit 5c16eb499c
2 changed files with 30 additions and 0 deletions
@@ -0,0 +1,15 @@
package com.roomroot.jwgl.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.roomroot.jwgl.entity.XYXJYDSQB;
import org.apache.ibatis.annotations.Mapper;
/**
* 学员学籍异动申请表 Mapper
* <p>
* 提供学员学籍异动申请的增删改查等操作。
* </p>
*/
@Mapper
public interface XYXJYDSQBMapper extends BaseMapper<XYXJYDSQB> {
}
@@ -0,0 +1,15 @@
package com.roomroot.jwgl.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.roomroot.jwgl.entity.XYXJYJJGB;
import org.apache.ibatis.annotations.Mapper;
/**
* 学员学籍预警结果表 Mapper
* <p>
* 提供学员学籍预警结果的查询等操作。
* </p>
*/
@Mapper
public interface XYXJYJJGBMapper extends BaseMapper<XYXJYJJGB> {
}