using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_PURCHASE_AGREEMENT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-07-26 /// public class ComBasePurchaseAgreementEntity { /// /// 协议号代码 /// private string agreementCode = ""; /// /// 协议号描述 /// private string agreementDesc = ""; /// /// 签订日期 /// private DateTime? signingDate = null; /// /// 备注 /// private string memo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; private string stdCodeNk = ""; private string stdNameNk = ""; /// /// 协议号代码 /// [Description("协议号代码")] [Nullable(false)] [DataLength(20)] [JsonProperty("agreementCode")] public string AgreementCode { get { return agreementCode; } set { agreementCode = value; } } /// /// 协议号描述 /// [Description("协议号描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("agreementDesc")] public string AgreementDesc { get { return agreementDesc; } set { agreementDesc = value; } } /// /// 签订日期 /// [Description("签订日期")] [Nullable(true)] [JsonProperty("signingDate")] public DateTime? SigningDate { get { return signingDate; } set { signingDate = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(100)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = 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)] [DataLength(20)] [JsonProperty("deleteName")] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] [JsonProperty("deleteTime")] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 内控标准代码 /// [Description("内控管理编号")] [Nullable(false)] [DataLength(1)] [JsonProperty("stdCodeNk")] public string StdCodeNk { get { return stdCodeNk; } set { stdCodeNk = value; } } /// /// 内控管理编号 /// [Description("内控管理编号")] [Nullable(false)] [DataLength(1)] [JsonProperty("stdNameNk")] public string StdNameNk { get { return stdNameNk; } set { stdNameNk = value; } } } }