查询班组未绑定的人员 ,修正

This commit is contained in:
qianhao.xu
2025-03-19 19:37:52 +08:00
parent db0e285a05
commit 9a05103503
4 changed files with 59 additions and 28 deletions

View File

@@ -163,13 +163,13 @@ namespace DOAN.Admin.WebApi.Controllers
/// <param name="group_code">班组id</param>
/// <returns></returns>
[HttpGet("list_person_bind")]
public IActionResult SearchPerson_group_bind(string group_code)
public IActionResult SearchPerson_group_bind(DateTime schedule_date, string group_code)
{
if (string.IsNullOrEmpty(group_code))
{
return SUCCESS(null);
}
var response = _GroupScheduleService.SearchPerson_group_bind(group_code);
var response = _GroupScheduleService.SearchPerson_group_bind(schedule_date.Date,group_code);
return SUCCESS(response);
}