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