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_C所对应的实体类(生成工具:代码生成工具3.0) /// 作者:doubi-PC 时间:2016-09-27 /// public class CostBaseProcesscostCEntity { /// /// 产线代码(来源于产线基础表COM_BASE_PLINE) /// private string plineCode = ""; /// /// 产线描述(来源于产线基础表COM_BASE_PLINE) /// private string plineName = ""; /// /// 工序代码(来源于产线基础表COM_BASE_PLINE) /// private string processCode = ""; /// /// 工序描述(来源于产线基础表COM_BASE_PLINE) /// private string processDesc = ""; /// /// 排产量下限值(t) /// private decimal? scheduleMin = null; /// /// 排产量上限值(t) /// private decimal? scheduleMax = null; /// /// 吨加工费(元) /// private decimal? costPrice = 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; } } /// /// 排产量下限值(t) /// [Description("排产量下限值(t)")] [Nullable(false)] [DataLength(22)] public decimal? ScheduleMin { get { return scheduleMin; } set { scheduleMin = value; } } /// /// 排产量上限值(t) /// [Description("排产量上限值(t)")] [Nullable(false)] [DataLength(22)] public decimal? ScheduleMax { get { return scheduleMax; } set { scheduleMax = value; } } /// /// 吨加工费(元) /// [Description("吨加工费(元)")] [Nullable(false)] [DataLength(22)] public decimal? CostPrice { get { return costPrice; } set { costPrice = 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; } } } }