39 lines
882 B
C#
39 lines
882 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using WMS.Attirubte;
|
|||
|
|
|
|||
|
|
namespace WMS.Model.Base
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "ScrapReasonModel")]
|
|||
|
|
public class ScrapReasonModel
|
|||
|
|
{
|
|||
|
|
private string _id = string.Empty;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 库存组织ID
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("ID")]
|
|||
|
|
[TableClm(NoSelect = false)]
|
|||
|
|
public string ID
|
|||
|
|
{
|
|||
|
|
set { _id = value; }
|
|||
|
|
get { return _id; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private string _reason = string.Empty;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 组织代码
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("原因")]
|
|||
|
|
public string REASON
|
|||
|
|
{
|
|||
|
|
set { _reason = value; }
|
|||
|
|
get { return _reason; }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|