using System; using System.ComponentModel; using WMS.Attirubte; namespace WMS.Model.SC { /// /// 领退料通知单回传 批次记录集:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] [TableClmAttribute(TableName = "CUX_WMS_COMPLETE_LOT_ITF")] public class Mod_CUX_WMS_COMPLETE_LOT_ITF { #region Model private int _mat_req_header_id; private int _mat_req_line_id; private string _lot_number; private int _qty_issue; private string _attribute11; private string _attribute12; private string _attribute13; private string _attribute14; private string _attribute15; /// /// 单据头主键ID /// [DisplayName("单据头主键ID")] public int MAT_REQ_HEADER_ID { set{ _mat_req_header_id=value;} get{return _mat_req_header_id;} } /// /// 单据行ID(行号) /// [DisplayName("单据行ID")] public int MAT_REQ_LINE_ID { set{ _mat_req_line_id=value;} get{return _mat_req_line_id;} } /// /// 批次号码 /// [DisplayName("批次号码")] public string LOT_NUMBER { set{ _lot_number=value;} get{return _lot_number;} } /// /// 批次数量 /// [DisplayName("批次数量")] public int QTY_ISSUE { set{ _qty_issue=value;} get{return _qty_issue;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE11 { set{ _attribute11=value;} get{return _attribute11;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE12 { set{ _attribute12=value;} get{return _attribute12;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE13 { set{ _attribute13=value;} get{return _attribute13;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE14 { set{ _attribute14=value;} get{return _attribute14;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE15 { set{ _attribute15=value;} get{return _attribute15;} } #endregion Model } }