using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.PnCost.Models { /// /// 数据库表COST_BASE_PRICE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:doubi-PC 时间:2016-09-20 /// public class CostBasePriceEntity { /// /// 物料编码(来源于采购系统表PUR_MAT) /// private string itemCode = ""; /// /// 物料名称(来源于采购系统表PUR_MAT) /// private string itemName = ""; /// /// 物料编码(来源于采购系统表PUR_BASE_INFO) /// private string arcCode = ""; /// /// 物料名称(来源于采购系统表PUR_BASE_INFO) /// private string arcItem = ""; /// /// 年份(4位) /// private decimal? year = null; /// /// 1月价格(元/吨) /// private decimal? month1 = null; /// /// 2月价格(元/吨) /// private decimal? month2 = null; /// /// 3月价格(元/吨) /// private decimal? month3 = null; /// /// 4月价格(元/吨) /// private decimal? month4 = null; /// /// 5月价格(元/吨) /// private decimal? month5 = null; /// /// 6月价格(元/吨) /// private decimal? month6 = null; /// /// 7月价格(元/吨) /// private decimal? month7 = null; /// /// 8月价格(元/吨) /// private decimal? month8 = null; /// /// 9月价格(元/吨) /// private decimal? month9 = null; /// /// 10月价格(元/吨) /// private decimal? month10 = null; /// /// 11月价格(元/吨) /// private decimal? month11 = null; /// /// 12月价格(元/吨) /// private decimal? month12 = null; /// /// 创建人 /// 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 memo = ""; /// /// 物料编码(来源于采购系统表PUR_MAT) /// [Description("物料编码")] [Nullable(false)] [DataLength(100)] public string ItemCode { get { return itemCode; } set { itemCode = value; } } /// /// 物料名称(来源于采购系统表PUR_MAT) /// [Description("物料")] [Nullable(false)] [DataLength(100)] public string ItemName { get { return itemName; } set { itemName = value; } } /// /// 分类编码(来源于采购系统表PUR_BASE_INFO) /// [Description("分类描述")] [Nullable(false)] [DataLength(20)] public string ArcCode { get { return arcCode; } set { arcCode = value; } } /// /// 分类名称(来源于采购系统表PUR_BASE_INFO) /// [Description("物料分类")] [Nullable(false)] [DataLength(100)] public string ArcItem { get { return arcItem; } set { arcItem = value; } } /// /// 年份(4位) /// [Description("年份")] [Nullable(false)] [DataLength(4)] public decimal? Year { get { return year; } set { year = value; } } /// /// 1月价格(元/吨) /// [Description("1月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month1 { get { return month1; } set { month1 = value; } } /// /// 2月价格(元/吨) /// [Description("2月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month2 { get { return month2; } set { month2 = value; } } /// /// 3月价格(元/吨) /// [Description("3月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month3 { get { return month3; } set { month3 = value; } } /// /// 4月价格(元/吨) /// [Description("4月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month4 { get { return month4; } set { month4 = value; } } /// /// 5月价格(元/吨) /// [Description("5月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month5 { get { return month5; } set { month5 = value; } } /// /// 6月价格(元/吨) /// [Description("6月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month6 { get { return month6; } set { month6 = value; } } /// /// 7月价格(元/吨) /// [Description("7月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month7 { get { return month7; } set { month7 = value; } } /// /// 8月价格(元/吨) /// [Description("8月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month8 { get { return month8; } set { month8 = value; } } /// /// 9月价格(元/吨) /// [Description("9月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month9 { get { return month9; } set { month9 = value; } } /// /// 10月价格(元/吨) /// [Description("10月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month10 { get { return month10; } set { month10 = value; } } /// /// 11月价格(元/吨) /// [Description("11月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month11 { get { return month11; } set { month11 = value; } } /// /// 12月价格(元/吨) /// [Description("12月价格(元/吨)")] [Nullable(true)] [DataLength(22)] public decimal? Month12 { get { return month12; } set { month12 = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = value; } } } }