This commit is contained in:
gcw_MV9p2JJN 2025-09-05 11:45:11 +08:00
parent c0f6d6c2f3
commit d30d86d5b4

View File

@ -21,6 +21,16 @@ namespace DOAN.WebApi.Controllers.MES.product
{
_proweekplanManageService = proweekplanManageService;
}
//TODO 查询计划列表 年周零件号
[HttpPost("searchWeekplan")]
[Log(Title = "查询计划列表 年周零件号", BusinessType = BusinessType.EXPORT, IsSaveRequestData = true, IsSaveResponseData = false)]
public IActionResult SearchWeekplan([FromBody] WeekplanQueryDto weekplanQuery)
{
PagedInfo<ProWeeklyPlanAndDateDto> result = _proweekplanManageService.SearchWeekplan(weekplanQuery);
return SUCCESS(result);
}
//TODO excel导入计划
/// <summary>
@ -59,16 +69,7 @@ namespace DOAN.WebApi.Controllers.MES.product
}
//TODO 查询计划列表 年周零件号
[HttpPost("searchWeekplan")]
[Log(Title = "查询计划列表 年周零件号", BusinessType = BusinessType.EXPORT, IsSaveRequestData = true, IsSaveResponseData = false)]
public IActionResult SearchWeekplan([FromBody] WeekplanQueryDto weekplanQuery)
{
PagedInfo<ProWeeklyPlanAndDateDto> result = _proweekplanManageService.SearchWeekplan(weekplanQuery);
return SUCCESS(result);
}