using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_PURCHASE_RANGE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-06-07 /// public class ComBasePurchaseRangeEntity { /// /// 供应范围代码(RAG+7位流水) /// private string rangeId = ""; /// /// 供应商代码 /// private string suppCode = ""; /// /// 规格(管坯规格代码:COM_BASE_SPEC) /// private string specCode = ""; /// /// 规格描述 /// private string specName = ""; /// /// 长度最长mm /// private decimal? lenMax = null; /// /// 长度最短mm /// private decimal? lenMin = null; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 供应范围代码(RAG+7位流水) /// [Description("供应范围代码")] [JsonProperty("rangeId")] public string RangeId { get { return rangeId; } set { rangeId = value; } } /// /// 供应商代码 /// [Description("供应商代码")] [JsonProperty("suppCode")] public string SuppCode { get { return suppCode; } set { suppCode = value; } } /// /// 规格(管坯规格代码:COM_BASE_SPEC) /// [Description("管坯规格")] [JsonProperty("specCode")] public string SpecCode { get { return specCode; } set { specCode = value; } } /// /// 规格描述 /// [Description("管坯规格")] [JsonProperty("specName")] public string SpecName { get { return specName; } set { specName = value; } } /// /// 长度最长mm /// [Description("长度最长mm")] [JsonProperty("lenMax")] public decimal? LenMax { get { return lenMax; } set { lenMax = value; } } /// /// 长度最短mm /// [Description("长度最短mm")] [JsonProperty("lenMin")] public decimal? LenMin { get { return lenMin; } set { lenMin = value; } } /// /// 创建人 /// [Description("创建人")] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [JsonProperty("updateName")] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [JsonProperty("updateTime")] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [JsonProperty("deleteName")] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [JsonProperty("deleteTime")] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } } }