1
This commit is contained in:
parent
c0f6d6c2f3
commit
d30d86d5b4
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user