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.PlnSaleOrd.管坯优化.model { /// /// 数据库表PLN_REQINF_GP所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2022-02-24 /// public class PlnReqinfGpExcel { /// /// 管坯需求编号 /// private string gpreqId = ""; /// /// 管坯类型(1铸坯2锻坯) /// private string gptype = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 单倍坯长 /// private decimal? lenGpSingle = null; /// /// 成分标准索引号集合(内控) /// private string cic = ""; /// /// 倍尺数 /// private decimal? cutNumGp = null; /// /// 管坯长度(长坯) /// private decimal? lengthGp = null; /// /// 需求类型(0 非双经销 1双经销 2定销订购) /// private string typeFlag = ""; private decimal? diameterGp = null; private string gpWtLong = ""; /// /// 管坯直径 /// [Description("断面")] [Nullable(true)] [DataLength(10)] public decimal? DiameterGp { get { return diameterGp; } set { diameterGp = value; } } /// /// 需求长管总重 /// [Description("需求量")] [Nullable(true)] [DataLength(10)] public string GpWtLong { get { return gpWtLong; } set { gpWtLong = value; } } /// /// 管坯需求编号 /// [Description("管坯需求编号")] [Nullable(false)] [DataLength(20)] public string GpreqId { get { return gpreqId; } set { gpreqId = value; } } /// /// 管坯类型(1铸坯2锻坯) /// [Description("管坯类型(1铸坯2锻坯)")] [Nullable(true)] [DataLength(20)] public string Gptype { get { return gptype; } set { gptype = value; } } /// /// 钢种代码 /// [Description("钢种代码")] [Nullable(true)] [DataLength(10)] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种名称")] [Nullable(true)] [DataLength(100)] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 单倍坯长 /// [Description("单倍坯长")] [Nullable(true)] [DataLength(10)] public decimal? LenGpSingle { get { return lenGpSingle; } set { lenGpSingle = value; } } /// /// 成分标准索引号集合(内控) /// [Description("成分标准索引号集合(内控)")] [Nullable(true)] [DataLength(400)] public string Cic { get { return cic; } set { cic = value; } } /// /// 倍尺数 /// [Description("倍尺数")] [Nullable(true)] [DataLength(10)] public decimal? CutNumGp { get { return cutNumGp; } set { cutNumGp = value; } } /// /// 管坯长度(长坯) /// [Description("管坯长度(长坯)")] [Nullable(true)] [DataLength(10)] public decimal? LengthGp { get { return lengthGp; } set { lengthGp = value; } } /// /// 需求类型(0 非双经销 1双经销 2定销订购) /// [Description("需求类型(0 非双经销 1双经销 2定销订购)")] [Nullable(true)] [DataLength(1)] public string TypeFlag { get { return typeFlag; } set { typeFlag = value; } } /// /// 创建时间 /// private string createTime = ""; [Description("创建时间")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 创建人 /// private string createName = ""; [Description("创建人")] public string CreateName { get { return createName; } set { createName = value; } } } }