using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.Serialization; using System.ComponentModel; using WMS.Attirubte; namespace WMS.Model.Base { /// /// 物料资料 /// [Serializable] [TableClmAttribute(TableName = "JWGoodsInfoModel")] public class JWGoodsInfoModel { private string _organization_id = string.Empty; /// /// 库存组织ID /// [DisplayName("库存组织ID")] [TableClm(NoSelect = false)] public string ORGANIZATION_ID { set { _organization_id = value; } get { return _organization_id; } } private string _organization_code = string.Empty; /// /// 组织代码 /// [DisplayName("组织代码")] public string ORGANIZATION_CODE { set { _organization_code = value; } get { return _organization_code; } } private string _inventory_tiem_id = string.Empty; /// /// 物料ID /// [DisplayName("物料ID")] public string INVENTORY_ITEM_ID { set { _inventory_tiem_id = value; } get { return _inventory_tiem_id; } } private string _item_type = string.Empty; /// ///物料类型 /// [DisplayName("物料类型")] public string ITEM_TYPE { get { return _item_type; } set { _item_type = value; } } private decimal _segment1 = 0; /// ///物料编码 /// [DisplayName("物料编码")] public decimal SEGMENT1 { get { return _segment1; } set { _segment1 = value; } } private string _item_description = string.Empty; /// ///物料名称 /// [DisplayName("物料名称")] public string ITEM_DESCRIPTION { get { return _item_description; } set { _item_description = value; } } private string _unit_of_issue = string.Empty; /// ///采购单位 /// [DisplayName("采购单位")] public string UNIT_OF_ISSUE { get { return _unit_of_issue; } set { _unit_of_issue = value; } } private string _inv_uom_code = string.Empty; /// ///库存单位 /// [DisplayName("库存单位")] public string INV_UOM_CODE { get { return _inv_uom_code; } set { _inv_uom_code = value; } } private decimal _shelf_life_days = 0; /// ///物料存储期限(有效期限)(天) /// [DisplayName("物料存储期限")] public decimal SHELF_LIFE_DAYS { get { return _shelf_life_days; } set { _shelf_life_days = value; } } private decimal _lot_control_code = 0; /// ///是否有控制批次 1-不控制,2-完全控制 /// [DisplayName("是否有控制批次")] public decimal LOT_CONTROL_CODE { get { return _lot_control_code; } set { _lot_control_code = value; } } private string _inventory_item_status_code = string.Empty; /// ///物料状态 Inactive无效 /// [DisplayName("物料状态")] public string INVENTORY_ITEM_STATUS_CODE { get { return _inventory_item_status_code; } set { _inventory_item_status_code = value; } } private string _category1 = string.Empty; /// ///分类1(一级) /// [DisplayName("分类1")] public string CATEGORY1 { get { return _category1; } set { _category1 = value; } } private string _category2 = string.Empty; /// ///分类2(二级) /// [DisplayName("分类2")] public string CATEGORY2 { get { return _category2; } set { _category2 = value; } } private string _category3 = string.Empty; /// ///分类3(三级) /// [DisplayName("分类3")] public string CATEGORY3 { get { return _category3; } set { _category3 = value; } } private decimal _defauli_lot_status = 0; /// ///默认批次状态 /// [DisplayName("批次状态")] public decimal DEFAULT_LOT_STATUS { get { return _defauli_lot_status; } set { _defauli_lot_status = value; } } private DateTime _last_update_date; /// ///最后更新日期 /// [DisplayName("最后更新日期")] public DateTime LAST_UPDATE_DATE { get { return _last_update_date; } set { _last_update_date = value; } } private string _last_updated_by = string.Empty; /// ///最后更新人 /// [DisplayName("最后更新人")] public string LAST_UPDATED_BY { get { return _last_updated_by; } set { _last_updated_by = value; } } private DateTime _creation_date; /// ///创建日期 /// [DisplayName("创建日期")] public DateTime CREATION_DATE { get { return _creation_date; } set { _creation_date = value; } } private decimal _created_by = 0; /// ///创建人 /// [DisplayName("创建人")] public decimal CREATED_BY { get { return _created_by; } set { _created_by = value; } } private decimal _status = 0; /// ///状态(1:未处理;2:错误;3:成功) /// [DisplayName("状态")] public decimal STATUS { get { return _status; } set { _status = value; } } private string _thickness = string.Empty; /// ///板厚度 /// [DisplayName("板厚度")] public string THICKNESS { get { return _thickness; } set { _thickness = value; } } private string _thickness_units = string.Empty; /// ///板厚单位 /// [DisplayName("板厚单位")] public string THICKNESS_UNITS { get { return _thickness_units; } set { _thickness_units = value; } } private string _ishalogen = string.Empty; /// ///卤素 1-无卤,0-有卤 /// [DisplayName("卤素")] public string ISHALOGEN { get { return _ishalogen; } set { _ishalogen = value; } } private decimal _status2 = 0; /// ///状态2 (1:未处理;2:错误;3:成功)-菲达使用 /// [DisplayName("状态2")] public decimal STATUS2 { get { return _status2; } set { _status2 = value; } } } }