200 lines
4.8 KiB
C#
200 lines
4.8 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using WMS.Attirubte;
|
|
namespace WMS.Model.SC
|
|
{
|
|
/// <summary>
|
|
/// 返修工单出库下发:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
[TableClmAttribute(TableName = "CUX_WMS_FIX_ISSUE_ITF")]
|
|
public class Mod_CUX_WMS_FIX_ISSUE_ITF
|
|
{
|
|
|
|
#region Model
|
|
private int _organization_id;
|
|
private string _organization_code;
|
|
private string _wip_entity_name;
|
|
private int _wip_entity_id;
|
|
private int _status_type;
|
|
private string _assembly;
|
|
private int _assembly_item_id;
|
|
private int _start_quantity;
|
|
private string _component_item;
|
|
private int _component_item_id;
|
|
private int _required_quantity;
|
|
private string _quantity_issued;
|
|
private string _quantity_open;
|
|
private DateTime _last_update_date;
|
|
private int _last_updated_by;
|
|
private DateTime _creation_date;
|
|
private int _created_by;
|
|
private int _status;
|
|
/// <summary>
|
|
/// 组织ID
|
|
/// </summary>
|
|
[DisplayName("组织ID")]
|
|
public int ORGANIZATION_ID
|
|
{
|
|
set{ _organization_id=value;}
|
|
get{return _organization_id;}
|
|
}
|
|
/// <summary>
|
|
/// 库存组织编号
|
|
/// </summary>
|
|
[DisplayName("库存组织编号")]
|
|
public string ORGANIZATION_CODE
|
|
{
|
|
set{ _organization_code=value;}
|
|
get{return _organization_code;}
|
|
}
|
|
/// <summary>
|
|
/// 返修工单号
|
|
/// </summary>
|
|
[DisplayName("返修工单号")]
|
|
public string WIP_ENTITY_NAME
|
|
{
|
|
set{ _wip_entity_name=value;}
|
|
get{return _wip_entity_name;}
|
|
}
|
|
/// <summary>
|
|
/// 返修工单ID
|
|
/// </summary>
|
|
[DisplayName("返修工单ID")]
|
|
public int WIP_ENTITY_ID
|
|
{
|
|
set{ _wip_entity_id=value;}
|
|
get{return _wip_entity_id;}
|
|
}
|
|
/// <summary>
|
|
/// 工单状态
|
|
/// </summary>
|
|
[DisplayName("工单状态")]
|
|
public int STATUS_TYPE
|
|
{
|
|
set{ _status_type=value;}
|
|
get{return _status_type;}
|
|
}
|
|
/// <summary>
|
|
/// 装配件
|
|
/// </summary>
|
|
[DisplayName("装配件")]
|
|
public string ASSEMBLY
|
|
{
|
|
set{ _assembly=value;}
|
|
get{return _assembly;}
|
|
}
|
|
/// <summary>
|
|
/// 装配件ID
|
|
/// </summary>
|
|
[DisplayName("装配件ID")]
|
|
public int ASSEMBLY_ITEM_ID
|
|
{
|
|
set{ _assembly_item_id=value;}
|
|
get{return _assembly_item_id;}
|
|
}
|
|
/// <summary>
|
|
/// 工单数量
|
|
/// </summary>
|
|
[DisplayName("工单数量")]
|
|
public int START_QUANTITY
|
|
{
|
|
set{ _start_quantity=value;}
|
|
get{return _start_quantity;}
|
|
}
|
|
/// <summary>
|
|
/// 组件
|
|
/// </summary>
|
|
[DisplayName("组件")]
|
|
public string COMPONENT_ITEM
|
|
{
|
|
set{ _component_item=value;}
|
|
get{return _component_item;}
|
|
}
|
|
/// <summary>
|
|
/// 组件ID
|
|
/// </summary>
|
|
[DisplayName("组件ID")]
|
|
public int COMPONENT_ITEM_ID
|
|
{
|
|
set{ _component_item_id=value;}
|
|
get{return _component_item_id;}
|
|
}
|
|
/// <summary>
|
|
/// 需求数量
|
|
/// </summary>
|
|
[DisplayName("需求数量")]
|
|
public int REQUIRED_QUANTITY
|
|
{
|
|
set{ _required_quantity=value;}
|
|
get{return _required_quantity;}
|
|
}
|
|
/// <summary>
|
|
/// 已发料数量
|
|
/// </summary>
|
|
[DisplayName("已发料数量")]
|
|
public string QUANTITY_ISSUED
|
|
{
|
|
set{ _quantity_issued=value;}
|
|
get{return _quantity_issued;}
|
|
}
|
|
/// <summary>
|
|
/// 未发料数量
|
|
/// </summary>
|
|
[DisplayName("未发料数量")]
|
|
public string QUANTITY_OPEN
|
|
{
|
|
set{ _quantity_open=value;}
|
|
get{return _quantity_open;}
|
|
}
|
|
/// <summary>
|
|
/// 最后更新日期
|
|
/// </summary>
|
|
[DisplayName("最后更新日期")]
|
|
public DateTime LAST_UPDATE_DATE
|
|
{
|
|
set{ _last_update_date=value;}
|
|
get{return _last_update_date;}
|
|
}
|
|
/// <summary>
|
|
/// 最后更新人
|
|
/// </summary>
|
|
[DisplayName("最后更新人")]
|
|
public int LAST_UPDATED_BY
|
|
{
|
|
set{ _last_updated_by=value;}
|
|
get{return _last_updated_by;}
|
|
}
|
|
/// <summary>
|
|
/// 创建日期
|
|
/// </summary>
|
|
[DisplayName("创建日期")]
|
|
public DateTime CREATION_DATE
|
|
{
|
|
set{ _creation_date=value;}
|
|
get{return _creation_date;}
|
|
}
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[DisplayName("创建人")]
|
|
public int CREATED_BY
|
|
{
|
|
set{ _created_by=value;}
|
|
get{return _created_by;}
|
|
}
|
|
/// <summary>
|
|
/// 状态(1:未处理;2:错误;3:成功)
|
|
/// </summary>
|
|
[DisplayName("状态")]
|
|
public int STATUS
|
|
{
|
|
set{ _status=value;}
|
|
get{return _status;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|