using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using Newtonsoft.Json.Converters; namespace com.steering.pss.kaohe.entity { /// /// 数据库表RP_KAOHE_ITEMQUANZHONG所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-03-15 /// public class RpKaoheItemquanzhongEntity { /// /// ID /// private string itemId = ""; /// /// 指标分类 /// private string itemType = ""; /// /// 指标名称 /// private string itemName = ""; /// /// 奖励金额 /// private decimal? awardMoney = null; /// /// 特钢权重 /// private decimal? tegang = null; /// /// 轧管权重 /// private decimal? zhaguan = null; /// /// 管加工权重 /// private decimal? gjg = null; /// /// 制造部权重 /// private decimal? zhizaobu = null; /// /// 工艺管理部门权重 /// private decimal? gyguanli = null; /// /// 钢研所权重 /// private decimal? gangyansuo = null; /// /// 制造部权重 /// private decimal? zhibaobu = null; /// /// 有效标志 /// private string validflag = ""; /// /// 创建日期 /// private string createdate = ""; /// /// 创建人 /// private string createby = ""; /// /// 修改日期 /// private string updatedate = ""; /// /// 修改人 /// private string updateby = ""; /// /// ID /// [Description("ID")] [JsonProperty("itemId")] public string ItemId { get { return itemId; } set { itemId = value; } } /// /// 指标分类 /// [Description("指标分类")] [JsonProperty("itemType")] public string ItemType { get { return itemType; } set { itemType = value; } } /// /// 指标名称 /// [Description("指标名称")] [JsonProperty("itemName")] public string ItemName { get { return itemName; } set { itemName = value; } } /// /// 奖励金额 /// [Description("奖励金额")] [JsonProperty("awardMoney")] public decimal? AwardMoney { get { return awardMoney; } set { awardMoney = value; } } /// /// 特钢权重 /// [Description("特钢权重")] [JsonProperty("tegang")] public decimal? Tegang { get { return tegang; } set { tegang = value; } } /// /// 轧管权重 /// [Description("轧管权重")] [JsonProperty("zhaguan")] public decimal? Zhaguan { get { return zhaguan; } set { zhaguan = value; } } /// /// 管加工权重 /// [Description("管加工权重")] [JsonProperty("gjg")] public decimal? Gjg { get { return gjg; } set { gjg = value; } } /// /// 制造部权重 /// [Description("制造部权重")] [JsonProperty("zhizaobu")] public decimal? Zhizaobu { get { return zhizaobu; } set { zhizaobu = value; } } /// /// 工艺管理部门权重 /// [Description("工艺管理部门权重")] [JsonProperty("gyguanli")] public decimal? Gyguanli { get { return gyguanli; } set { gyguanli = value; } } /// /// 钢研所权重 /// [Description("钢研所权重")] [JsonProperty("gangyansuo")] public decimal? Gangyansuo { get { return gangyansuo; } set { gangyansuo = value; } } /// /// 质保部权重 /// [Description("质保部权重")] [JsonProperty("zhibaobu")] public decimal? Zhibaobu { get { return zhibaobu; } set { zhibaobu = value; } } /// /// 有效标志 /// [Description("有效标志")] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 创建日期 /// [Description("创建日期")] [JsonProperty("createdate")] public string Createdate { get { return createdate; } set { createdate = value; } } /// /// 创建人 /// [Description("创建人")] [JsonProperty("createby")] public string Createby { get { return createby; } set { createby = value; } } /// /// 修改日期 /// [Description("修改日期")] [JsonProperty("updatedate")] public string Updatedate { get { return updatedate; } set { updatedate = value; } } /// /// 修改人 /// [Description("修改人")] [JsonProperty("updateby")] public string Updateby { get { return updateby; } set { updateby = value; } } } }