251 lines
6.6 KiB
C#
251 lines
6.6 KiB
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using WMS.Attirubte;
|
|||
|
|
namespace WMS.Model.SC
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 采购通知单主表:实体类(属性说明自动提取数据库字段的描述信息)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "CUX_WMS_PO_HEADES_ITF")]
|
|||
|
|
public class Mod_CUX_WMS_PO_HEADES_ITF
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
#region Model
|
|||
|
|
private int _po_header_id;
|
|||
|
|
private int _organization_id;
|
|||
|
|
private string _organization_code;
|
|||
|
|
private string _ship_to_organization_code;
|
|||
|
|
private int _ship_to_organization_id;
|
|||
|
|
private int _agent_id;
|
|||
|
|
private int _revision_num;
|
|||
|
|
private string _segment1;
|
|||
|
|
private string _full_name;
|
|||
|
|
private int _vendor_id;
|
|||
|
|
private string _vendor_name;
|
|||
|
|
private int _vendor_site_id;
|
|||
|
|
private string _vendor_site_code;
|
|||
|
|
private string _comments;
|
|||
|
|
private string _note_to_receiver;
|
|||
|
|
private DateTime _approved_date;
|
|||
|
|
private string _cancel_flag;
|
|||
|
|
private string _closed_code;
|
|||
|
|
private DateTime _last_update_date;
|
|||
|
|
private int _last_updated_by;
|
|||
|
|
private DateTime _creation_date;
|
|||
|
|
private int _created_by;
|
|||
|
|
private int _status;
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("订单头主键")]
|
|||
|
|
public int PO_HEADER_ID
|
|||
|
|
{
|
|||
|
|
set { _po_header_id = value; }
|
|||
|
|
get { return _po_header_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("下单业务实体")]
|
|||
|
|
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 SHIP_TO_ORGANIZATION_CODE
|
|||
|
|
{
|
|||
|
|
set { _ship_to_organization_code = value; }
|
|||
|
|
get { return _ship_to_organization_code; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("收货组织ID")]
|
|||
|
|
public int SHIP_TO_ORGANIZATION_ID
|
|||
|
|
{
|
|||
|
|
set { _ship_to_organization_id = value; }
|
|||
|
|
get { return _ship_to_organization_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("采购员ID")]
|
|||
|
|
public int AGENT_ID
|
|||
|
|
{
|
|||
|
|
set { _agent_id = value; }
|
|||
|
|
get { return _agent_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("版本号")]
|
|||
|
|
public int REVISION_NUM
|
|||
|
|
{
|
|||
|
|
set { _revision_num = value; }
|
|||
|
|
get { return _revision_num; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("采购单号码")]
|
|||
|
|
public string SEGMENT1
|
|||
|
|
{
|
|||
|
|
set { _segment1 = value; }
|
|||
|
|
get { return _segment1; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("采购员姓名")]
|
|||
|
|
public string FULL_NAME
|
|||
|
|
{
|
|||
|
|
set { _full_name = value; }
|
|||
|
|
get { return _full_name; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("供应商ID")]
|
|||
|
|
public int VENDOR_ID
|
|||
|
|
{
|
|||
|
|
set { _vendor_id = value; }
|
|||
|
|
get { return _vendor_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("供应商名称")]
|
|||
|
|
public string VENDOR_NAME
|
|||
|
|
{
|
|||
|
|
set { _vendor_name = value; }
|
|||
|
|
get { return _vendor_name; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("供应商地点ID")]
|
|||
|
|
public int VENDOR_SITE_ID
|
|||
|
|
{
|
|||
|
|
set { _vendor_site_id = value; }
|
|||
|
|
get { return _vendor_site_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("供应商地点")]
|
|||
|
|
public string VENDOR_SITE_CODE
|
|||
|
|
{
|
|||
|
|
set { _vendor_site_code = value; }
|
|||
|
|
get { return _vendor_site_code; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备注")]
|
|||
|
|
public string COMMENTS
|
|||
|
|
{
|
|||
|
|
set { _comments = value; }
|
|||
|
|
get { return _comments; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("发运行接收人")]
|
|||
|
|
public string NOTE_TO_RECEIVER
|
|||
|
|
{
|
|||
|
|
set { _note_to_receiver = value; }
|
|||
|
|
get { return _note_to_receiver; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("采购单审批日期")]
|
|||
|
|
public DateTime APPROVED_DATE
|
|||
|
|
{
|
|||
|
|
set { _approved_date = value; }
|
|||
|
|
get { return _approved_date; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("取消标志")]
|
|||
|
|
public string CANCEL_FLAG
|
|||
|
|
{
|
|||
|
|
set { _cancel_flag = value; }
|
|||
|
|
get { return _cancel_flag; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("采购单头状态")]
|
|||
|
|
public string CLOSED_CODE
|
|||
|
|
{
|
|||
|
|
set { _closed_code = value; }
|
|||
|
|
get { return _closed_code; }
|
|||
|
|
}
|
|||
|
|
/// <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>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("状态")]
|
|||
|
|
public int STATUS
|
|||
|
|
{
|
|||
|
|
set { _status = value; }
|
|||
|
|
get { return _status; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|