This commit is contained in:
2026-01-21 19:21:42 +08:00
parent e70b1bd306
commit b350322626
4 changed files with 36 additions and 45 deletions

View File

@@ -0,0 +1,14 @@
import request from '/@/utils/request';
/**
* 分页查询宿舍学生异动列表
* @param query
*/
export const fetchList = (query?: any) => {
return request({
url: '/stuwork/dormroomstudentchange/page',
method: 'get',
params: query
});
};