修改Dto

This commit is contained in:
qianhao.xu 2024-07-23 15:22:02 +08:00
parent ce58d53f55
commit 1801d5bf9d
2 changed files with 23 additions and 1 deletions

View File

@ -108,7 +108,7 @@ namespace DOAN.Admin.WebApi.Controllers.JobKanban
/// <param name="status">要改为的状态</param>
/// <returns></returns>
[HttpGet("finish_workorder")]
public IActionResult FinishWorkOrder(ProReportworkDto reportWorkDto)
public IActionResult FinishWorkOrder(ProReportworkDto2 reportWorkDto)
{
if (reportWorkDto==null)
{

View File

@ -49,5 +49,27 @@ namespace DOAN.Model.MES.product.Dto
}
public class ProReportworkDto2
{
public string FkWorkorder { get; set; }
public int? DispatchNum { get; set; }
public int? FinishedNum { get; set; }
public string GroupCode { get; set; }
public string LineCode { get; set; }
public string CreatedBy { get; set; }
}
}