新生报到宿舍分配代码调整

This commit is contained in:
2025-08-28 09:51:18 +08:00
parent f258ae20bc
commit 5409611abc
19 changed files with 85 additions and 67 deletions

View File

@@ -1,6 +1,7 @@
package com.srs.framework.mybatisplusMapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
public interface EasyBaseMapper<T> extends BaseMapper<T> {
@@ -11,4 +12,4 @@ public interface EasyBaseMapper<T> extends BaseMapper<T> {
* @return 影响行数
*/
Integer insertBatchSomeColumn(List<T> entityList);
}
}