This commit is contained in:
qianhao.xu
2024-12-03 19:02:23 +08:00
parent 6cc576e43e
commit d62b577466
7 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
namespace DOAN.Model.BZFM.Dto
{
/// <summary>
/// 报工查询对象
/// </summary>
public class ProReportworkQueryDto : PagerInfo
{
public string Workorder { get; set; }
public string RouteCode { get; set; }
public string ProcessCode { get; set; }
public string Worker { get; set; }
public DateTime[] JobDate { get; set; } = new DateTime[2];
}
/// <summary>
/// 报工输入输出对象
/// </summary>
public class ProReportworkDto
{
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
public string Workorder { get; set; }
public string RouteCode { get; set; }
public string ProcessCode { get; set; }
public int? PlanNum { get; set; }
public int? FinishNum { get; set; }
public int? BadNum { get; set; }
public string Worker { get; set; }
public DateTime? JobDate { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}