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

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

@@ -4,12 +4,11 @@ import java.util.List;
import com.srs.framework.mybatisplusMapper.EasyBaseMapper;
import com.srs.stureg.domain.SrsMsgQueue;
import com.srs.stureg.domain.SrsStuReg;
import org.apache.ibatis.annotations.Mapper;
/**
* 短信队列Mapper接口
*
*
* @author srs
* @date 2023-07-24
*/
@@ -18,7 +17,7 @@ public interface SrsMsgQueueMapper extends EasyBaseMapper<SrsMsgQueue>
{
/**
* 查询短信队列
*
*
* @param id 短信队列主键
* @return 短信队列
*/
@@ -26,7 +25,7 @@ public interface SrsMsgQueueMapper extends EasyBaseMapper<SrsMsgQueue>
/**
* 查询短信队列列表
*
*
* @param srsMsgQueue 短信队列
* @return 短信队列集合
*/
@@ -34,7 +33,7 @@ public interface SrsMsgQueueMapper extends EasyBaseMapper<SrsMsgQueue>
/**
* 新增短信队列
*
*
* @param srsMsgQueue 短信队列
* @return 结果
*/
@@ -42,7 +41,7 @@ public interface SrsMsgQueueMapper extends EasyBaseMapper<SrsMsgQueue>
/**
* 修改短信队列
*
*
* @param srsMsgQueue 短信队列
* @return 结果
*/
@@ -50,7 +49,7 @@ public interface SrsMsgQueueMapper extends EasyBaseMapper<SrsMsgQueue>
/**
* 删除短信队列
*
*
* @param id 短信队列主键
* @return 结果
*/
@@ -58,7 +57,7 @@ public interface SrsMsgQueueMapper extends EasyBaseMapper<SrsMsgQueue>
/**
* 批量删除短信队列
*
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/