using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.Mcp.Control.Entity { /// /// 数据库表HTT_ENTRUST_PROCESS所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2019-03-04 /// public class HttEntrustProcessEntity { /// /// 委外单号 /// private string subcontractNo = ""; /// /// 操作序号 /// private decimal? operateSeq = null; /// /// 操作动作 /// private string operateAction = ""; /// /// 操作人 /// private string operateName = ""; /// /// 操作时间 /// private string operateDate = ""; /// /// 备注 /// private string memo = ""; /// /// 委托原状态 /// private string oldStatus = ""; /// /// 委托新状态 /// private string newStatus = ""; /// /// 委外单号 /// [Description("委外单号")] [Nullable(false)] [DataLength(20)] public string SubcontractNo { get { return subcontractNo; } set { subcontractNo = value; } } /// /// 操作序号 /// [Description("操作序号")] [Nullable(false)] [DataLength(22)] public decimal? OperateSeq { get { return operateSeq; } set { operateSeq = value; } } /// /// 操作动作 /// [Description("操作动作")] [Nullable(true)] [DataLength(100)] public string OperateAction { get { return operateAction; } set { operateAction = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(100)] public string OperateName { get { return operateName; } set { operateName = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public string OperateDate { get { return operateDate; } set { operateDate = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(1000)] public string Memo { get { return memo; } set { memo = value; } } /// /// 委托原状态 /// [Description("委托原状态")] [Nullable(true)] [DataLength(2)] public string OldStatus { get { return oldStatus; } set { oldStatus = value; } } /// /// 委托新状态 /// [Description("委托新状态")] [Nullable(true)] [DataLength(2)] public string NewStatus { get { return newStatus; } set { newStatus = value; } } } }