namespace ZR.Model.mes.pro
{
///
/// 包装记录
///
[SugarTable("wm_packingrecord")]
public class WmPackingrecord
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 零件号
///
public string PartNum { get; set; }
///
/// 设备名称(ID)
///
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; }
///
/// 备用3
///
public string Standby3 { get; set; }
///
/// 备用4
///
public string Standby4 { get; set; }
///
/// 备用5
///
public string Standby5 { get; set; }
///
/// 指示是否满箱
///
public bool BFilled { get; set; }
///
/// 指示是否已拼零头箱
///
public bool BCombined { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
}
}