58 lines
1.3 KiB
C#
Raw Normal View History

2024-12-03 19:02:23 +08:00
namespace DOAN.Model.BZFM.Dto
{
/// <summary>
/// 报工查询对象
/// </summary>
public class ProReportworkQueryDto : PagerInfo
{
public string Workorder { get; set; }
2024-12-23 14:00:01 +08:00
public int RouteId { get; set; }
2024-12-03 19:02:23 +08:00
2024-12-03 20:13:34 +08:00
public int ProcessId { get; set; }
2024-12-03 19:02:23 +08:00
public string Worker { get; set; }
2024-12-23 14:00:01 +08:00
public DateTime[] JobDateTime { get; set; } = new DateTime[2];
2024-12-03 19:02:23 +08:00
}
/// <summary>
/// 报工输入输出对象
/// </summary>
public class ProReportworkDto
{
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
public string Workorder { get; set; }
2024-12-22 15:12:10 +08:00
public string RouteId { get; set; }
2024-12-03 19:02:23 +08:00
2024-12-03 20:13:34 +08:00
public int ProcessId { get; set; }
2024-12-03 20:24:07 +08:00
public string ProcessName { get; set; }
2024-12-03 19:02:23 +08:00
public int? PlanNum { get; set; }
public int? FinishNum { get; set; }
public int? BadNum { get; set; }
public string Worker { get; set; }
2024-12-22 15:12:10 +08:00
public DateTime? JobDateTime { get; set; }
2024-12-03 19:02:23 +08:00
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; }
}
}