大标签追溯
This commit is contained in:
53
ZR.Model/MES/pro/DTO/WmPackingrecordDto.cs
Normal file
53
ZR.Model/MES/pro/DTO/WmPackingrecordDto.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.pro.DTO
|
||||
{
|
||||
/// <summary>
|
||||
/// 包装记录查询对象
|
||||
/// </summary>
|
||||
public class WmPackingrecordQueryDto : PagerInfo
|
||||
{
|
||||
public string PartNum { get; set; }
|
||||
|
||||
public string Machine { get; set; }
|
||||
public string WorkOrderNum { get; set; }
|
||||
public DateTime? start_time { get; set; }
|
||||
public DateTime? end_time { get; set; }
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 包装记录输入输出对象
|
||||
/// </summary>
|
||||
public class WmPackingrecordDto
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
|
||||
public string PartNum { get; set; }
|
||||
|
||||
public string Machine { get; set; }
|
||||
|
||||
public string ProductCode { get; set; }
|
||||
|
||||
public string PackingCode { get; set; }
|
||||
|
||||
public string ScannerContent { get; set; }
|
||||
|
||||
public string WorkOrderNum { get; set; }
|
||||
|
||||
public string Standby3 { get; set; }
|
||||
|
||||
public string Standby4 { get; set; }
|
||||
|
||||
public string Standby5 { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "指示是否满箱不能为空")]
|
||||
public bool BFilled { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
72
ZR.Model/MES/pro/WmPackingrecord.cs
Normal file
72
ZR.Model/MES/pro/WmPackingrecord.cs
Normal file
@@ -0,0 +1,72 @@
|
||||
|
||||
namespace ZR.Model.mes.pro
|
||||
{
|
||||
/// <summary>
|
||||
/// 包装记录
|
||||
/// </summary>
|
||||
[SugarTable("wm_packingrecord")]
|
||||
public class WmPackingrecord
|
||||
{
|
||||
/// <summary>
|
||||
/// Id
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零件号
|
||||
/// </summary>
|
||||
public string PartNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备名称(ID)
|
||||
/// </summary>
|
||||
public string Machine { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品条码
|
||||
/// </summary>
|
||||
public string ProductCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱条码
|
||||
/// </summary>
|
||||
public string PackingCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 扫码记录
|
||||
/// </summary>
|
||||
public string ScannerContent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工单号
|
||||
/// </summary>
|
||||
public string WorkOrderNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用3
|
||||
/// </summary>
|
||||
public string Standby3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用4
|
||||
/// </summary>
|
||||
public string Standby4 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用5
|
||||
/// </summary>
|
||||
public string Standby5 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 指示是否满箱
|
||||
/// </summary>
|
||||
public bool BFilled { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user