- 新增报废记录表及相关服务、控制器 - 扩展工单报表DTO,增加炉号、领料批次等字段 - 修改报表查询服务,关联工单表获取更多信息 - 在物料入库DTO中添加工单号字段 - 新增IQC文件夹结构
69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
|
|
namespace DOAN.Model.BZFM.Dto
|
|
{
|
|
/// <summary>
|
|
/// 报工查询对象
|
|
/// </summary>
|
|
public class ProReportworkQueryDto : PagerInfo
|
|
{
|
|
public string Workorder { get; set; }
|
|
|
|
public int RouteId { get; set; }
|
|
|
|
public int ProcessId { get; set; }
|
|
|
|
public string Worker { get; set; }
|
|
|
|
public DateTime[] JobDateTime { get; set; } = new DateTime[2];
|
|
}
|
|
|
|
/// <summary>
|
|
/// 报工输入输出对象
|
|
/// </summary>
|
|
public class ProReportworkDto
|
|
{
|
|
[Required(ErrorMessage = "雪花不能为空")]
|
|
public string Id { get; set; }
|
|
|
|
// 炉号
|
|
public string StoveCode { get; set; }
|
|
|
|
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; }
|
|
|
|
public string RouteId { get; set; }
|
|
|
|
public int ProcessId { get; set; }
|
|
public string ProcessName { get; set; }
|
|
|
|
public int? PlanNum { get; set; }
|
|
|
|
public int? FinishNum { get; set; }
|
|
|
|
public int? BadNum { get; set; }
|
|
|
|
public string Worker { get; set; }
|
|
|
|
public DateTime? JobDateTime { 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; }
|
|
|
|
|
|
|
|
}
|
|
} |