Files
kunshan-bzfm-mes-backend/DOAN.Model/MES/Product/Dto/ProReportworkDto.cs

69 lines
1.6 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 StoveCode { get; set; }
2024-12-03 19:02:23 +08:00
public string Workorder { get; set; }
// 产成品号
public string ProductionName { get; set; }
public string ProductionCode { get; set; }
// 原材料号
public string MaterialCode { get; set; }
public string MaterialName { get; set; }
// 领料批次号
public string FeedOrder { get; set; }
2024-12-03 19:02:23 +08:00
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; }
}
}