using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleOrder { /// /// 数据库表CRAFT_AUTO_PEOPLE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-02-24 /// public class CraftAutoPeopleEntity { /// /// 主键 /// private decimal? pk = null; /// /// 管理科室 /// private string unitCode = ""; /// /// 科室审核人 /// private string auditCode = ""; /// /// 相关科室审核人 /// private string auditCode1 = ""; /// /// 审批 /// private string approveCode = ""; /// /// 批准 /// private string approveCode1 = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; private string unitDesc = ""; private bool? autoFlag = null; /// /// 管理科室 /// [Description("MSC管理科室")] [JsonProperty("unitDesc")] public string UnitDesc { get { return unitDesc; } set { unitDesc = value; } } private string auditDesc = ""; /// /// 科室审核人 /// [Description("科室审核人")] [JsonProperty("auditDesc")] public string AuditDesc { get { return auditDesc; } set { auditDesc = value; } } private string auditDesc1 = ""; /// /// 相关科室审核人 /// [Description("相关科室审核人")] [JsonProperty("auditDesc1")] public string AuditDesc1 { get { return auditDesc1; } set { auditDesc1 = value; } } private string approveDesc = ""; /// /// 审批人 /// [Description("审批人")] [JsonProperty("approveDesc")] public string ApproveDesc { get { return approveDesc; } set { approveDesc = value; } } private string approveDesc1 = ""; /// /// 批准人 /// [Description("批准人")] [JsonProperty("approveDesc1")] public string ApproveDesc1 { get { return approveDesc1; } set { approveDesc1 = value; } } /// /// 主键 /// [Description("主键")] [Nullable(false)] [DataLength(22)] [JsonProperty("pk")] public decimal? Pk { get { return pk; } set { pk = value; } } /// /// 管理科室 /// [Description("管理科室")] [Nullable(true)] [DataLength(10)] [JsonProperty("unitCode")] public string UnitCode { get { return unitCode; } set { unitCode = value; } } /// /// 科室审核人 /// [Description("科室审核人")] [Nullable(true)] [DataLength(10)] [JsonProperty("auditCode")] public string AuditCode { get { return auditCode; } set { auditCode = value; } } /// /// 相关科室审核人 /// [Description("相关科室审核人")] [Nullable(true)] [DataLength(10)] [JsonProperty("auditCode1")] public string AuditCode1 { get { return auditCode1; } set { auditCode1 = value; } } /// /// 审批 /// [Description("审批")] [Nullable(true)] [DataLength(10)] [JsonProperty("approveCode")] public string ApproveCode { get { return approveCode; } set { approveCode = value; } } /// /// 批准 /// [Description("批准")] [Nullable(true)] [DataLength(10)] [JsonProperty("approveCode1")] public string ApproveCode1 { get { return approveCode1; } set { approveCode1 = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] [JsonProperty("updateName")] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] [JsonProperty("updateTime")] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 自动审核 /// [Description("自动审核")] [Nullable(true)] [JsonProperty("autoFlag")] public bool? AutoFlag { get { return autoFlag; } set { autoFlag = value; } } } }