100 lines
2.3 KiB
C#
100 lines
2.3 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using WMS.Attirubte;
|
|
namespace WMS.Model.SC
|
|
{
|
|
/// <summary>
|
|
/// 返修工单出库完成批次:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
[TableClmAttribute(TableName = "CUX_WMS_FIX_LOT_ITF")]
|
|
public class Mod_CUX_WMS_FIX_LOT_ITF
|
|
{
|
|
|
|
#region Model
|
|
private string _out_bar_code;
|
|
private string _lot_number;
|
|
private string _wip_entity_name;
|
|
private int _status;
|
|
private DateTime _last_update_date;
|
|
private int _last_updated_by;
|
|
private DateTime _creation_date;
|
|
private int _created_by;
|
|
/// <summary>
|
|
/// 外箱条码
|
|
/// </summary>
|
|
[DisplayName("外箱条码")]
|
|
public string OUT_BAR_CODE
|
|
{
|
|
set{ _out_bar_code=value;}
|
|
get{return _out_bar_code;}
|
|
}
|
|
/// <summary>
|
|
/// 批次
|
|
/// </summary>
|
|
[DisplayName("批次")]
|
|
public string LOT_NUMBER
|
|
{
|
|
set{ _lot_number=value;}
|
|
get{return _lot_number;}
|
|
}
|
|
/// <summary>
|
|
/// 返修工单号
|
|
/// </summary>
|
|
[DisplayName("返修工单号")]
|
|
public string WIP_ENTITY_NAME
|
|
{
|
|
set{ _wip_entity_name=value;}
|
|
get{return _wip_entity_name;}
|
|
}
|
|
/// <summary>
|
|
/// 状态(1:未处理;2:错误;3:成功)
|
|
/// </summary>
|
|
[DisplayName("状态")]
|
|
public int STATUS
|
|
{
|
|
set{ _status=value;}
|
|
get{return _status;}
|
|
}
|
|
/// <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;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|