140 lines
3.3 KiB
C#
140 lines
3.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using WMS.Attirubte;
|
|||
|
|
namespace WMS.Model.SC
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 领退料通知单回传 行记录集:实体类(属性说明自动提取数据库字段的描述信息)
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "CUX_WMS_COMPLETE_LINES_ITF")]
|
|||
|
|
public class Mod_CUX_WMS_COMPLETE_LINES_ITF
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
#region Model
|
|||
|
|
private int _mat_req_header_id;
|
|||
|
|
private int _mat_req_line_id;
|
|||
|
|
private string _subinventory_code;
|
|||
|
|
private string _location_code;
|
|||
|
|
private string _subinventory_code_to;
|
|||
|
|
private string _location_code_to;
|
|||
|
|
private int _qty_actual;
|
|||
|
|
private string _attribute6;
|
|||
|
|
private string _attribute7;
|
|||
|
|
private string _attribute8;
|
|||
|
|
private string _attribute9;
|
|||
|
|
private string _attribute10;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 单据头主键ID
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("单据头主键ID")]
|
|||
|
|
public int MAT_REQ_HEADER_ID
|
|||
|
|
{
|
|||
|
|
set{ _mat_req_header_id=value;}
|
|||
|
|
get{return _mat_req_header_id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 单据行ID(行号)
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("单据行ID")]
|
|||
|
|
public int MAT_REQ_LINE_ID
|
|||
|
|
{
|
|||
|
|
set{ _mat_req_line_id=value;}
|
|||
|
|
get{return _mat_req_line_id;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 来源子库
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("来源子库")]
|
|||
|
|
public string SUBINVENTORY_CODE
|
|||
|
|
{
|
|||
|
|
set{ _subinventory_code=value;}
|
|||
|
|
get{return _subinventory_code;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 货位代码
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("货位代码")]
|
|||
|
|
public string LOCATION_CODE
|
|||
|
|
{
|
|||
|
|
set{ _location_code=value;}
|
|||
|
|
get{return _location_code;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 目的子库
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("目的子库")]
|
|||
|
|
public string SUBINVENTORY_CODE_TO
|
|||
|
|
{
|
|||
|
|
set{ _subinventory_code_to=value;}
|
|||
|
|
get{return _subinventory_code_to;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 目的货位代码
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("目的货位代码")]
|
|||
|
|
public string LOCATION_CODE_TO
|
|||
|
|
{
|
|||
|
|
set{ _location_code_to=value;}
|
|||
|
|
get{return _location_code_to;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 行实发数量
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("行实发数量")]
|
|||
|
|
public int QTY_ACTUAL
|
|||
|
|
{
|
|||
|
|
set{ _qty_actual=value;}
|
|||
|
|
get{return _qty_actual;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE6
|
|||
|
|
{
|
|||
|
|
set{ _attribute6=value;}
|
|||
|
|
get{return _attribute6;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE7
|
|||
|
|
{
|
|||
|
|
set{ _attribute7=value;}
|
|||
|
|
get{return _attribute7;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE8
|
|||
|
|
{
|
|||
|
|
set{ _attribute8=value;}
|
|||
|
|
get{return _attribute8;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE9
|
|||
|
|
{
|
|||
|
|
set{ _attribute9=value;}
|
|||
|
|
get{return _attribute9;}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("备用")]
|
|||
|
|
public string ATTRIBUTE10
|
|||
|
|
{
|
|||
|
|
set{ _attribute10=value;}
|
|||
|
|
get{return _attribute10;}
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|