170 lines
4.3 KiB
C#
170 lines
4.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using WMS.Attirubte;
|
|||
|
|
namespace WMS.Model.SC
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 领退料通知单回传 头记录 :实体类(属性说明自动提取数据库字段的描述信息)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "CUX_WMS_COMPLETE_HEADERS_ITF")]
|
|||
|
|
public class Mod_CUX_WMS_COMPLETE_HEADERS_ITF
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
#region Model
|
|||
|
|
private string _wms_no;
|
|||
|
|
private int _mat_req_header_id;
|
|||
|
|
private int _rec_type;
|
|||
|
|
private int _mat_req_num;
|
|||
|
|
private DateTime _mat_issue_date;
|
|||
|
|
private string _io_type;
|
|||
|
|
private string _organization_code_apply;
|
|||
|
|
private string _organization_code_issue;
|
|||
|
|
private int _vendor_id;
|
|||
|
|
private string _attribute1;
|
|||
|
|
private string _attribute2;
|
|||
|
|
private string _attribute3;
|
|||
|
|
private string _attribute4;
|
|||
|
|
private string _attribute5;
|
|||
|
|
private int _status;
|
|||
|
|
/// <summary>
|
|||
|
|
/// wms系统号(如果有多个WMS系统,作为区别)
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("wms系统号")]
|
|||
|
|
public string WMS_NO
|
|||
|
|
{
|
|||
|
|
set{ _wms_no=value;}
|
|||
|
|
get{return _wms_no;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 单据头主键ID
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("单据头主键ID")]
|
|||
|
|
public int MAT_REQ_HEADER_ID
|
|||
|
|
{
|
|||
|
|
set{ _mat_req_header_id=value;}
|
|||
|
|
get{return _mat_req_header_id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 1-子库转移中的入库方(EBS早于WMS增加了库存,WMS作入库登记后EBS不再增加库存),2-其他
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("类型")]
|
|||
|
|
public int REC_TYPE
|
|||
|
|
{
|
|||
|
|
set{ _rec_type=value;}
|
|||
|
|
get{return _rec_type;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 申请单号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("申请单号")]
|
|||
|
|
public int MAT_REQ_NUM
|
|||
|
|
{
|
|||
|
|
set{ _mat_req_num=value;}
|
|||
|
|
get{return _mat_req_num;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 发料日期
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("发料日期")]
|
|||
|
|
public DateTime MAT_ISSUE_DATE
|
|||
|
|
{
|
|||
|
|
set{ _mat_issue_date=value;}
|
|||
|
|
get{return _mat_issue_date;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 推式领料:35:WIP发料(工单需求),43:WIP退料,34 工单补料拉式领料:1:拉式发料,2:拉式退料非BOM领料:11:非BOM出库,21:非BOM入库,12:报废出,22:报废入,13:盘亏调整,23:盘盈调整,31:VMI转仓,32:子库转移,33:跨组织直接转移
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("推式领料")]
|
|||
|
|
public string IO_TYPE
|
|||
|
|
{
|
|||
|
|
set{ _io_type=value;}
|
|||
|
|
get{return _io_type;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 申请组织代码
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("申请组织代码")]
|
|||
|
|
public string ORGANIZATION_CODE_APPLY
|
|||
|
|
{
|
|||
|
|
set{ _organization_code_apply=value;}
|
|||
|
|
get{return _organization_code_apply;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 发货组织代码
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("发货组织代码")]
|
|||
|
|
public string ORGANIZATION_CODE_ISSUE
|
|||
|
|
{
|
|||
|
|
set{ _organization_code_issue=value;}
|
|||
|
|
get{return _organization_code_issue;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 供应商ID
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("供应商ID")]
|
|||
|
|
public int VENDOR_ID
|
|||
|
|
{
|
|||
|
|
set{ _vendor_id=value;}
|
|||
|
|
get{return _vendor_id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE1
|
|||
|
|
{
|
|||
|
|
set{ _attribute1=value;}
|
|||
|
|
get{return _attribute1;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE2
|
|||
|
|
{
|
|||
|
|
set{ _attribute2=value;}
|
|||
|
|
get{return _attribute2;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE3
|
|||
|
|
{
|
|||
|
|
set{ _attribute3=value;}
|
|||
|
|
get{return _attribute3;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE4
|
|||
|
|
{
|
|||
|
|
set{ _attribute4=value;}
|
|||
|
|
get{return _attribute4;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE5
|
|||
|
|
{
|
|||
|
|
set{ _attribute5=value;}
|
|||
|
|
get{return _attribute5;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 状态(1:未处理;2:错误;3:成功)
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("状态")]
|
|||
|
|
public int STATUS
|
|||
|
|
{
|
|||
|
|
set{ _status=value;}
|
|||
|
|
get{return _status;}
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|