using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_PURCHASE_PROVIDER所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-07-26 /// public class ComBasePurchaseProviderEntity { /// /// 采购协议代码 /// private string agreementCode = ""; /// /// 供应商代码 /// private string suppCode = ""; /// /// 供应商名称 /// private string suppName = ""; private bool? chk = false; /// /// 选择 /// [Description("选择")] [Nullable(false)] [DataLength(20)] [JsonProperty("chk")] public bool? Chk { get { return chk; } set { chk = value; } } /// /// 采购协议代码 /// [Description("采购协议代码")] [Nullable(false)] [DataLength(20)] [JsonProperty("agreementCode")] public string AgreementCode { get { return agreementCode; } set { agreementCode = value; } } /// /// 供应商代码 /// [Description("供应商代码")] [Nullable(false)] [DataLength(64)] [JsonProperty("suppCode")] public string SuppCode { get { return suppCode; } set { suppCode = value; } } /// /// 供应商名称 /// [Description("供应商名称")] [Nullable(false)] [DataLength(256)] [JsonProperty("suppName")] public string SuppName { get { return suppName; } set { suppName = value; } } } }