using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.Mcp.Treatment.Entity { /// /// 数据库表HTT_ENTRUST_PRICE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2019-03-28 /// public class HttEntrustPriceEntity { /// /// 项目代码 /// private string projectCode = ""; /// /// 项目名称 /// private string projectName = ""; /// /// 产品规格代码 /// private string specCode = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 不含税单价 /// private decimal? unitPrice = null; /// /// 含税单价 /// private decimal? unitProceTax = null; /// /// 分类 /// private string projectType = ""; /// /// 计价单位( 0- 支/个 1-吨 2-口 3-捆 ) /// private string unit = ""; /// /// 备注 /// private string remark = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 项目代码 /// [Description("项目代码")] [Nullable(false)] [DataLength(20)] public string ProjectCode { get { return projectCode; } set { projectCode = value; } } /// /// 项目名称 /// [Description("项目名称")] [Nullable(true)] [DataLength(100)] public string ProjectName { get { return projectName; } set { projectName = value; } } /// /// 产品规格代码 /// [Description("规格")] [Nullable(true)] [DataLength(20)] public string SpecCode { get { return specCode; } set { specCode = value; } } /// /// 产品规格描述 /// [Description("规格")] [Nullable(true)] [DataLength(100)] public string SpecName { get { return specName; } set { specName = value; } } /// /// 钢级(牌号)代码 /// [Description("钢级代码")] [Nullable(true)] [DataLength(10)] public string Steelcode { get { return steelcode; } set { steelcode = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = value; } } /// /// 不含税单价 /// [Description("不含税单价")] [Nullable(true)] [DataLength(8)] public decimal? UnitPrice { get { return unitPrice; } set { unitPrice = value; } } /// /// 含税单价 /// [Description("含税单价")] [Nullable(true)] [DataLength(8)] public decimal? UnitProceTax { get { return unitProceTax; } set { unitProceTax = value; } } /// /// 分类 /// [Description("分类")] [Nullable(true)] [DataLength(100)] public string ProjectType { get { return projectType; } set { projectType = value; } } /// /// 计价单位( 0- 支/个 1-吨 2-口 3-捆 ) /// [Description("计价单位")] [Nullable(true)] [DataLength(3)] public string Unit { get { return unit; } set { unit = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(1000)] public string Remark { get { return remark; } set { remark = 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; } } /// /// 扣型代码 /// private string modelCode = ""; /// /// 扣型描述 /// private string modelDesc = ""; /// /// 扣型代码 /// [Description("扣型代码")] [Nullable(true)] [DataLength(20)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述 /// [Description("扣型")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } private string id; /// /// ID /// [Description("ID")] [Nullable(false)] [DataLength(40)] public string Id { get { return id; } set { id = value; } } } }