油漆
This commit is contained in:
76
server/ZR.Model/MES/wms/WmPackingrecord.cs
Normal file
76
server/ZR.Model/MES/wms/WmPackingrecord.cs
Normal file
@@ -0,0 +1,76 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using SqlSugar;
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user