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_PROCESSCOST所对应的实体类(生成工具:代码生成工具3.0) /// 作者:doubi-PC 时间:2016-10-09 /// public class CostBaseProcesscostEntity { /// /// 产线代码(来源于产线基础表COM_BASE_PLINE) /// private string plineCode = ""; /// /// 产线描述(来源于产线基础表COM_BASE_PLINE) /// private string plineName = ""; /// /// 工序代码(来源于产线基础表COM_BASE_PLINE) /// private string processCode = ""; /// /// 工序描述(来源于产线基础表COM_BASE_PLINE) /// private string processDesc = ""; /// /// 年份(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 = ""; /// /// 产线代码(来源于产线基础表COM_BASE_PLINE) /// [Description("产线代码")] [Nullable(false)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述(来源于产线基础表COM_BASE_PLINE) /// [Description("产线")] [Nullable(false)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 工序代码(来源于产线基础表COM_BASE_PLINE) /// [Description("工序代码")] [Nullable(false)] [DataLength(20)] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 工序描述(来源于产线基础表COM_BASE_PLINE) /// [Description("工序")] [Nullable(false)] [DataLength(100)] public string ProcessDesc { get { return processDesc; } set { processDesc = 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; } } } }