264 lines
7.4 KiB
C#
264 lines
7.4 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.ComponentModel;
|
||
using WMS.Attirubte;
|
||
|
||
namespace WMS.Model.Stock
|
||
{
|
||
[Serializable]
|
||
[TableClmAttribute(TableName = "T_STOCK_ADJUSTLIST")]
|
||
public class AdjustListModel
|
||
{
|
||
#region Model
|
||
|
||
private string list_id = string.Empty;
|
||
private DateTime list_date = System.DateTime.Now;
|
||
private string count_id = string.Empty;
|
||
private string list_reason = string.Empty;
|
||
private string list_createper = string.Empty;
|
||
private string list_createperName = string.Empty;
|
||
private DateTime list_createdate = System.DateTime.Now;
|
||
private string list_checkper = string.Empty;
|
||
private string list_checkpername = string.Empty;
|
||
private DateTime list_checkdate = DateTime.Parse("1900-01-01");
|
||
private string list_count = string.Empty;
|
||
private string status = string.Empty;
|
||
private string remark = string.Empty;
|
||
private string version = string.Empty;
|
||
private string operatorid = string.Empty;
|
||
private DateTime operatedate = System.DateTime.Now;
|
||
private string list_confirmper = string.Empty;
|
||
private string list_confirmpername = string.Empty;
|
||
private DateTime list_confirmdate = DateTime.Parse("1900-01-01");
|
||
private string storage_id = string.Empty;
|
||
private string storage_name = string.Empty;
|
||
|
||
/// <summary>
|
||
/// 库存调整单编号
|
||
/// </summary>
|
||
[DisplayName("库存调整单编号")]
|
||
public string List_id
|
||
{
|
||
get { return list_id; }
|
||
set { list_id = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 调整日期
|
||
/// </summary>
|
||
[DisplayName("调整日期")]
|
||
public DateTime List_date
|
||
{
|
||
get { return list_date; }
|
||
set { list_date = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 盘点单号
|
||
/// </summary>
|
||
[DisplayName("盘点单号")]
|
||
public string Count_id
|
||
{
|
||
get { return count_id; }
|
||
set { count_id = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 创建人编号
|
||
/// </summary>
|
||
[DisplayName("创建人编号")]
|
||
[TableClmAttribute(JoinTableClmName = "NAME", JoinTableClm = "USER_ID", ClmJoinTable = "T_BASE_USERINFO")]
|
||
public string List_createper
|
||
{
|
||
get { return list_createper; }
|
||
set { list_createper = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 创建人
|
||
/// </summary>
|
||
[DisplayName("创建人")]
|
||
[TableClm(NoSelect = false)]
|
||
public string List_createperName
|
||
{
|
||
get { return list_createperName; }
|
||
set { list_createperName = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 创建日期
|
||
/// </summary>
|
||
[DisplayName("创建日期")]
|
||
public DateTime List_createdate
|
||
{
|
||
get { return list_createdate; }
|
||
set { list_createdate = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 调整原因(0 盘点单生成,1 主动新增,2 其它原因)
|
||
/// </summary>
|
||
[DisplayName("调整原因")]
|
||
public string List_reason
|
||
{
|
||
get { return list_reason; }
|
||
set { list_reason = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 审核人编号
|
||
/// </summary>
|
||
|
||
[DisplayName("审核人编号")]
|
||
[TableClmAttribute(JoinTableClmName = "NAME", JoinTableClm = "USER_ID", ClmJoinTable = "T_BASE_USERINFO")]
|
||
public string List_checkper
|
||
{
|
||
get { return list_checkper; }
|
||
set { list_checkper = value; }
|
||
}
|
||
/// <summary>
|
||
/// 审核人
|
||
/// </summary>
|
||
[DisplayName("审核人")]
|
||
[TableClm(NoSelect = false)]
|
||
public string List_checkpername
|
||
{
|
||
get { return list_checkpername; }
|
||
set { list_checkpername = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 审核日期
|
||
/// </summary>
|
||
///
|
||
[DisplayName("审核日期")]
|
||
public DateTime List_checkdate
|
||
{
|
||
get { return list_checkdate; }
|
||
set { list_checkdate = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 调整总数量
|
||
/// </summary>
|
||
[DisplayName("调整总数量")]
|
||
[TableClm(NoSelect = false)]
|
||
public string List_count
|
||
{
|
||
get { return list_count; }
|
||
set { list_count = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// Status 0 已生成 1 已提交 2 已审核 3 作废
|
||
/// </summary>
|
||
[DisplayName("Status")]
|
||
[TableClm(NoSelect = false)]
|
||
public string Status
|
||
{
|
||
get { return status; }
|
||
set { status = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
[DisplayName("备注")]
|
||
[TableClm(NoSelect = false)]
|
||
public string Remark
|
||
{
|
||
get { return remark; }
|
||
set { remark = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 版本号
|
||
/// </summary>
|
||
[DisplayName("版本号")]
|
||
[TableClm(NoSelect = false)]
|
||
public string Version
|
||
{
|
||
get { return version; }
|
||
set { version = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 提交人
|
||
/// </summary>
|
||
[DisplayName("操作人")]
|
||
[TableClm(NoSelect = false)]
|
||
public string Operatorid
|
||
{
|
||
get { return operatorid; }
|
||
set { operatorid = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 提交时间
|
||
/// </summary>
|
||
[DisplayName("操作时间")]
|
||
public DateTime Operatedate
|
||
{
|
||
get { return operatedate; }
|
||
set { operatedate = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 提交人编号
|
||
/// </summary>
|
||
[DisplayName("提交人编号")]
|
||
[TableClmAttribute(JoinTableClmName = "NAME", JoinTableClm = "USER_ID", ClmJoinTable = "T_BASE_USERINFO")]
|
||
public string List_confirmper
|
||
{
|
||
get { return list_confirmper; }
|
||
set { list_confirmper = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 确认人
|
||
/// </summary>
|
||
[DisplayName("提交人")]
|
||
[TableClm(NoSelect = false)]
|
||
public string List_confirmpername
|
||
{
|
||
get { return list_confirmpername; }
|
||
set { list_confirmpername = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 确认日期
|
||
/// </summary>
|
||
[DisplayName("提交日期")]
|
||
public DateTime List_confirmdate
|
||
{
|
||
get { return list_confirmdate; }
|
||
set { list_confirmdate = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 仓库编号
|
||
/// </summary>
|
||
[DisplayName("仓库编号")]
|
||
[TableClmAttribute(JoinTableClmName = "STORAGE_NAME", JoinTableClm = "STORAGE_ID", ClmJoinTable = "T_BASE_STORAGEINFO")]
|
||
public string Storage_id
|
||
{
|
||
get { return storage_id; }
|
||
set { storage_id = value; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 仓库名称
|
||
/// </summary>
|
||
[DisplayName("仓库名称")]
|
||
[TableClm(NoSelect = false)]
|
||
public string Storage_name
|
||
{
|
||
get { return storage_name; }
|
||
set { storage_name = value; }
|
||
}
|
||
#endregion
|
||
}
|
||
}
|