Files
2024-06-07 11:05:58 +08:00

72 lines
2.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ZR.Model.MES.wms
{
/// <summary>
/// 包装记录
///</summary>
[SugarTable("wm_packingrecord")]
public class WmPackingrecord
{
/// <summary>
///
///</summary>
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 零件号
///</summary>
[SugarColumn(ColumnName = "PartNum")]
public string PartNum { get; set; }
/// <summary>
/// 设备名称ID
///</summary>
[SugarColumn(ColumnName = "Machine")]
public string Machine { get; set; }
/// <summary>
/// 产品条码
///</summary>
[SugarColumn(ColumnName = "ProductCode")]
public string ProductCode { get; set; }
/// <summary>
/// 箱条码
///</summary>
[SugarColumn(ColumnName = "PackingCode")]
public string PackingCode { get; set; }
/// <summary>
/// 扫码记录
///</summary>
[SugarColumn(ColumnName = "ScannerContent")]
public string ScannerContent { get; set; }
/// <summary>
/// 工单号
///</summary>
[SugarColumn(ColumnName = "WorkOrderNum")]
public string WorkOrderNum { get; set; }
/// <summary>
/// 备用3
///</summary>
[SugarColumn(ColumnName = "Standby3")]
public string Standby3 { get; set; }
/// <summary>
/// 备用4
///</summary>
[SugarColumn(ColumnName = "Standby4")]
public string Standby4 { get; set; }
/// <summary>
/// 备用5
///</summary>
[SugarColumn(ColumnName = "Standby5")]
public string Standby5 { get; set; }
/// <summary>
/// 指示是否满箱
/// 默认值: b'0'
///</summary>
[SugarColumn(ColumnName = "BFilled")]
public bool BFilled { get; set; }
/// <summary>
/// 创建时间
///</summary>
[SugarColumn(ColumnName = "CreateTime")]
public DateTime? CreateTime { get; set; }
}
}