using Newtonsoft.Json; using System; using System.ComponentModel; using System.Text; namespace com.hnshituo.pur.vo { /// /// 数据库表PUR_PERFORMANCE_E所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-10-20 /// public class PurPerformanceEEntity { /// /// GUID /// private string performanceNo = ""; /// /// 绩效年(YYYY) /// private string performanceYear = ""; /// /// 供应商代码 /// private string suppCode = ""; /// /// 供应商名称 /// private string suppName = ""; /// /// 第三方认证分值 /// private string values1 = ""; /// /// 过去绩效评分 /// private string values2 = ""; /// /// 采购管理科室代码 /// private string buyerUnitCode = ""; /// /// 采购管理科室描述 /// private string buyerUnitDesc = ""; /// /// GUID /// [Description("GUID")] [JsonProperty("performanceNo")] public string PerformanceNo { get { return performanceNo; } set { performanceNo = value; } } /// /// 绩效年(YYYY) /// [Description("绩效年")] [JsonProperty("performanceYear")] public string PerformanceYear { get { return performanceYear; } set { performanceYear = value; } } /// /// 供应商代码 /// [Description("供应商代码")] [JsonProperty("suppCode")] public string SuppCode { get { return suppCode; } set { suppCode = value; } } /// /// 供应商名称 /// [Description("供应商名称")] [JsonProperty("suppName")] public string SuppName { get { return suppName; } set { suppName = value; } } /// /// 第二方认证分值 /// [Description("第二方认证分值")] [JsonProperty("values1")] public string Values1 { get { return values1; } set { values1 = value; } } /// /// 过去绩效评分 /// [Description("过去绩效评分")] [JsonProperty("values2")] public string Values2 { get { return values2; } set { values2 = value; } } /// /// 采购管理科室代码 /// [Description("采购管理科室代码")] [JsonProperty("buyerUnitCode")] public string BuyerUnitCode { get { return buyerUnitCode; } set { buyerUnitCode = value; } } /// /// 采购管理科室描述 /// [Description("采购管理科室描述")] [JsonProperty("buyerUnitDesc")] public string BuyerUnitDesc { get { return buyerUnitDesc; } set { buyerUnitDesc = value; } } } }