using System; using System.ComponentModel; using WMS.Attirubte; namespace WMS.Model.SC { /// /// 领退料通知单明细表:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] [TableClmAttribute(TableName = "CUX_WMS_ISSUE_LINE_ITF")] public partial class Mod_CUX_WMS_ISSUE_LINE_ITF { #region Model private int _mat_req_header_id; private int _mat_req_line_id; private int _item_id; private string _item_code; private string _segment1; private string _item_description; private string _inv_uom_code; private string _pur_uom_code; private int _qty_apply; private int _qty_actual; private int _qty_issued; private string _subinventory_code; private string _location_code; private string _subinventory_code_to; private int _location_to; private string _remark; private string _use_dep_code; private string _o2n_flag; private int _conversion_rate; private DateTime _last_update_date; private int _last_updated_by; private DateTime _creation_date; private int _created_by; /// /// 头主键 /// [DisplayName("头主键")] public int MAT_REQ_HEADER_ID { set{ _mat_req_header_id=value;} get{return _mat_req_header_id;} } /// /// 行主键 /// [DisplayName("行主键")] public int MAT_REQ_LINE_ID { set{ _mat_req_line_id=value;} get{return _mat_req_line_id;} } /// /// 物料ID /// [DisplayName("物料ID")] public int ITEM_ID { set{ _item_id=value;} get{return _item_id;} } /// /// 物料编码 /// [DisplayName("物料编码")] public string SEGMENT1 { set{ _segment1=value;} get{return _segment1; } } /// /// 物料描述 /// [DisplayName("物料描述")] public string ITEM_DESCRIPTION { set{ _item_description=value;} get{return _item_description;} } /// /// 库存单位 /// [DisplayName("库存单位")] public string INV_UOM_CODE { set{ _inv_uom_code=value;} get{return _inv_uom_code;} } /// /// 采购单位 /// [DisplayName("采购单位")] public string PUR_UOM_CODE { set{ _pur_uom_code=value;} get{return _pur_uom_code;} } /// /// 申请数量 /// [DisplayName("申请数量")] public int QTY_APPLY { set{ _qty_apply=value;} get{return _qty_apply;} } /// /// 实发数量 /// [DisplayName("实发数量")] public int QTY_ACTUAL { set{ _qty_actual=value;} get{return _qty_actual;} } /// /// 已发数量 /// [DisplayName("已发数量")] public int QTY_ISSUED { set{ _qty_issued=value;} get{return _qty_issued;} } /// /// 发料(来源)子库 /// [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 int LOCATION_TO { set{ _location_to=value;} get{return _location_to;} } /// /// 备注 /// [DisplayName("备注")] public string REMARK { set{ _remark=value;} get{return _remark;} } /// /// 使用部门 /// [DisplayName("使用部门")] public string USE_DEP_CODE { set{ _use_dep_code=value;} get{return _use_dep_code;} } /// /// 以旧换新 /// [DisplayName("以旧换新")] public string O2N_FLAG { set{ _o2n_flag=value;} get{return _o2n_flag;} } /// /// 单位转换(采购单位转库存单位) /// [DisplayName("单位转换")] public int CONVERSION_RATE { set{ _conversion_rate=value;} get{return _conversion_rate;} } /// /// 最后更新日期 /// [DisplayName("最后更新日期")] public DateTime LAST_UPDATE_DATE { set{ _last_update_date=value;} get{return _last_update_date;} } /// /// 最后更新人 /// [DisplayName("最后更新人")] public int LAST_UPDATED_BY { set{ _last_updated_by=value;} get{return _last_updated_by;} } /// /// 创建日期 /// [DisplayName("创建日期")] public DateTime CREATION_DATE { set{ _creation_date=value;} get{return _creation_date;} } /// /// 创建人 /// [DisplayName("创建人")] public int CREATED_BY { set{ _created_by=value;} get{return _created_by;} } #endregion Model } }