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; /// /// 库存组织ID /// [DisplayName("ID")] [TableClm(NoSelect = false)] public string ID { set { _id = value; } get { return _id; } } private string _reason = string.Empty; /// /// 组织代码 /// [DisplayName("原因")] public string REASON { set { _reason = value; } get { return _reason; } } } }