feat: 排班管理

This commit is contained in:
fyy
2025-08-11 11:05:47 +08:00
parent effcb9ef86
commit 0a77934d8b
5 changed files with 71 additions and 37 deletions

View File

@@ -78,3 +78,17 @@ export function arrangmentList(params?: arrangmentListQuery) {
{ params },
);
}
/**
* 查询某天排班人员详情列表(班表视图)
* @param params
* @returns 排班列表
*/
export function queryScheduleView(params?: arrangmentListQuery) {
return requestClient.get<PageResult<AttendanceUserGroup>>(
'/property/AttendanceUserGroup/queryScheduleView',
{ params },
);
}