| | |
| | | |
| | | namespace Tiger.Model |
| | | { |
| | | /// <summary> |
| | | /// 实体:包装数量明细 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [Serializable] |
| | | [SugarTable("BAS_PKG_DTL")] |
| | | public class BAS_PKG_DTL : DbEntityWithAuth |
| | | { |
| | | #region 构造函数 |
| | | /// <summary> |
| | | /// 实体:包装数量明细 |
| | | /// </summary> |
| | | public BAS_PKG_DTL() {} |
| | | #endregion |
| | | /// <summary> |
| | | /// 实体:包装数量明细 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("包装数量明细")] |
| | | [Serializable] |
| | | [SugarTable("BAS_PKG_DTL")] |
| | | public class BAS_PKG_DTL : DbEntityWithAuth |
| | | { |
| | | #region 构造函数 |
| | | /// <summary> |
| | | /// 实体:包装数量明细 |
| | | /// </summary> |
| | | public BAS_PKG_DTL() { } |
| | | #endregion |
| | | |
| | | #region 公共属性 |
| | | /// <summary> |
| | | /// 包装规则ID |
| | | /// </summary> |
| | | public string PKG_RULE_ID { get; set; } |
| | | /// <summary> |
| | | /// 包装/载具编码 |
| | | /// </summary> |
| | | public string PKG_CODE { get; set; } |
| | | /// <summary> |
| | | /// 包装层级 |
| | | /// </summary> |
| | | public int PKG_LEVEL { get; set; } |
| | | /// <summary> |
| | | /// 包装数量 |
| | | /// </summary> |
| | | public int PKG_QTY { get; set; } |
| | | #region 公共属性 |
| | | /// <summary> |
| | | /// 包装规则ID |
| | | /// </summary> |
| | | [DisplayName("包装规则ID")] |
| | | public string PKG_RULE_ID { get; set; } |
| | | /// <summary> |
| | | /// 包装/载具编码 |
| | | /// </summary> |
| | | [DisplayName("包装/载具编码")] |
| | | public string PKG_CODE { get; set; } |
| | | /// <summary> |
| | | /// 包装层级 |
| | | /// </summary> |
| | | [DisplayName("包装层级")] |
| | | public int PKG_LEVEL { get; set; } |
| | | /// <summary> |
| | | /// 包装数量 |
| | | /// </summary> |
| | | [DisplayName("包装数量")] |
| | | public int PKG_QTY { get; set; } |
| | | /// <summary> |
| | | /// 标签模板编码 |
| | | /// </summary> |
| | | [DisplayName("标签模板编码")] |
| | | public string LABEL_CODE { get; set; } |
| | | /// <summary> |
| | | /// 包装条码规则编码 |
| | | /// </summary> |
| | | [DisplayName("包装条码规则编码")] |
| | | public string SN_RULE { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |