using System; using System.ComponentModel; using WMS.Attirubte; namespace WMS.Model.SC { /// /// 领退料通知单回传 行记录集:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] [TableClmAttribute(TableName = "CUX_WMS_COMPLETE_LINES_ITF")] public class Mod_CUX_WMS_COMPLETE_LINES_ITF { #region Model private int _mat_req_header_id; private int _mat_req_line_id; private string _subinventory_code; private string _location_code; private string _subinventory_code_to; private string _location_code_to; private int _qty_actual; private string _attribute6; private string _attribute7; private string _attribute8; private string _attribute9; private string _attribute10; /// /// 单据头主键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 SUBINVENTORY_CODE { set{ _subinventory_code=value;} get{return _subinventory_code;} } /// /// 货位代码 /// [DisplayName("货位代码")] public string LOCATION_CODE { set{ _location_code=value;} get{return _location_code;} } /// /// 目的子库 /// [DisplayName("目的子库")] public string SUBINVENTORY_CODE_TO { set{ _subinventory_code_to=value;} get{return _subinventory_code_to;} } /// /// 目的货位代码 /// [DisplayName("目的货位代码")] public string LOCATION_CODE_TO { set{ _location_code_to=value;} get{return _location_code_to;} } /// /// 行实发数量 /// [DisplayName("行实发数量")] public int QTY_ACTUAL { set{ _qty_actual=value;} get{return _qty_actual;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE6 { set{ _attribute6=value;} get{return _attribute6;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE7 { set{ _attribute7=value;} get{return _attribute7;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE8 { set{ _attribute8=value;} get{return _attribute8;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE9 { set{ _attribute9=value;} get{return _attribute9;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE10 { set{ _attribute10=value;} get{return _attribute10;} } #endregion Model } }