| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- 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.PlnSaleOrd.炼钢计划.entity
- {
- /// <summary>
- /// 数据库表PLN_BASE_PLINE_LG所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:USER-20150714WV 时间:2016-06-15
- /// </summary>
- public class PlnBasePlineLgEntity
- {
- /// <summary>
- /// 产线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 产线描述
- /// </summary>
- private string plineName = "";
- /// <summary>
- /// 工序代码
- /// </summary>
- private string processCode = "";
- /// <summary>
- /// 工序描述
- /// </summary>
- private string processDesc = "";
- /// <summary>
- /// 电炉寿命(炉)
- /// </summary>
- private decimal? efMaxLife = null;
- /// <summary>
- /// 标准出钢量
- /// </summary>
- private decimal? stdOutWt = null;
- /// <summary>
- /// 电炉留余
- /// </summary>
- private decimal? efWtLeft = null;
- /// <summary>
- /// 出钢量上限(前50炉95%)
- /// </summary>
- private decimal? outWtMax = null;
- /// <summary>
- /// 出钢量下限
- /// </summary>
- private decimal? outWtMin = null;
- /// <summary>
- /// 当前已排炉龄
- /// </summary>
- private decimal? efAgeNow = null;
- /// <summary>
- /// 电炉状态重置人
- /// </summary>
- private string efResetMan = "";
- /// <summary>
- /// 电炉状态重置时间
- /// </summary>
- private string efResetTime = "";
- /// <summary>
- /// 排产简称
- /// </summary>
- private string scheduleCode = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string creatTime = "";
- /// <summary>
- /// 创建人
- /// </summary>
- private string createName = "";
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- [Nullable(false)]
- [DataLength(20)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 产线描述
- /// </summary>
- [Description("产线描述")]
- [Nullable(true)]
- [DataLength(100)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 工序代码
- /// </summary>
- [Description("工序代码")]
- [Nullable(true)]
- [DataLength(20)]
- public string ProcessCode
- {
- get { return processCode; }
- set { processCode = value; }
- }
- /// <summary>
- /// 工序描述
- /// </summary>
- [Description("工序描述")]
- [Nullable(true)]
- [DataLength(100)]
- public string ProcessDesc
- {
- get { return processDesc; }
- set { processDesc = value; }
- }
- /// <summary>
- /// 电炉寿命(炉)
- /// </summary>
- [Description("电炉寿命(炉)")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? EfMaxLife
- {
- get { return efMaxLife; }
- set { efMaxLife = value; }
- }
- /// <summary>
- /// 标准出钢量
- /// </summary>
- [Description("标准出钢量")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? StdOutWt
- {
- get { return stdOutWt; }
- set { stdOutWt = value; }
- }
- /// <summary>
- /// 电炉留余
- /// </summary>
- [Description("电炉留余")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? EfWtLeft
- {
- get { return efWtLeft; }
- set { efWtLeft = value; }
- }
- /// <summary>
- /// 出钢量上限(前50炉95%)
- /// </summary>
- [Description("出钢量上限")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? OutWtMax
- {
- get { return outWtMax; }
- set { outWtMax = value; }
- }
- /// <summary>
- /// 出钢量下限
- /// </summary>
- [Description("出钢量下限")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? OutWtMin
- {
- get { return outWtMin; }
- set { outWtMin = value; }
- }
- /// <summary>
- /// 当前已排炉龄
- /// </summary>
- [Description("当前已排炉龄")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? EfAgeNow
- {
- get { return efAgeNow; }
- set { efAgeNow = value; }
- }
- /// <summary>
- /// 电炉状态重置人
- /// </summary>
- [Description("状态重置人")]
- [Nullable(true)]
- [DataLength(20)]
- public string EfResetMan
- {
- get { return efResetMan; }
- set { efResetMan = value; }
- }
- /// <summary>
- /// 电炉状态重置时间
- /// </summary>
- [Description("状态重置时间")]
- [Nullable(true)]
- public string EfResetTime
- {
- get { return efResetTime; }
- set { efResetTime = value; }
- }
- /// <summary>
- /// 排产简称
- /// </summary>
- [Description("排产简称")]
- [Nullable(true)]
- [DataLength(10)]
- public string ScheduleCode
- {
- get { return scheduleCode; }
- set { scheduleCode = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CreatTime
- {
- get { return creatTime; }
- set { creatTime = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- [Nullable(true)]
- [DataLength(20)]
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- }
- }
|