| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace Core.StlMes.Client.SaleOrder
- {
- public class SlmOrdDesignMscPlGxPrlEntity
- {
- /// <summary>
- /// DESGIN_KEY
- /// </summary>
- private object desginKey;
- /// <summary>
- /// 全程产线号
- /// </summary>
- private object mscPline;
- /// <summary>
- /// 全程工序顺序号
- /// </summary>
- private object backlogSeq;
- /// <summary>
- /// 工序代码
- /// </summary>
- private object processCode;
- /// <summary>
- /// 工序
- /// </summary>
- private object processDesc;
- /// <summary>
- /// 产线代码
- /// </summary>
- private object plineCode;
- /// <summary>
- /// 产线描述
- /// </summary>
- private object plineName;
- /// <summary>
- /// 允许外购
- /// </summary>
- private object allowBuy;
- /// <summary>
- /// 产能井代码
- /// </summary>
- private object wellCode;
- /// <summary>
- /// 产能井描述
- /// </summary>
- private object wellName;
- /// <summary>
- /// 是否警告
- /// </summary>
- private object warnFl;
- /// <summary>
- /// 警告内容
- /// </summary>
- private object warnDesc;
- /// <summary>
- /// 是否选取该产线(1:是、0、否)
- /// </summary>
- private object validflag;
- /// <summary>
- /// 产线状态
- /// </summary>
- private object selected;
- private string identFlag;
- [Description("认证产线")]
- public string IdentFlag
- {
- get { return identFlag; }
- set { identFlag = value; }
- }
- public SlmOrdDesignMscPlGxPrlEntity()
- {
- desginKey = "";
- processDesc = "";
- allowBuy = "";
- mscPline = "";
- backlogSeq = "";
- processCode = "";
- plineCode = "";
- plineName = "";
- wellCode = "";
- wellName = "";
- warnFl = "";
- warnDesc = "";
- validflag = "";
- }
- /// <summary>
- /// 产线状态
- /// </summary>
- [Description("产线状态")]
- public object Selected
- {
- get { return selected; }
- set
- {
- if (value == null)
- {
- selected = DBNull.Value;
- }
- else
- {
- selected = value;
- }
- }
- }
- /// <summary>
- /// 工序
- /// </summary>
- [Description("工序")]
- public object ProcessDesc
- {
- get { return processDesc; }
- set
- {
- if (value == null)
- {
- processDesc = DBNull.Value;
- }
- else
- {
- processDesc = value;
- }
- }
- }
- /// <summary>
- /// 允许外购
- /// </summary>
- [Description("允许外购")]
- public object AllowBuy
- {
- get { return allowBuy; }
- set
- {
- if (value == null)
- {
- allowBuy = DBNull.Value;
- }
- else
- {
- allowBuy = value;
- }
- }
- }
- /// <summary>
- /// DESGIN_KEY
- /// </summary>
- [Description("DESGIN_KEY")]
- public object DesginKey
- {
- get { return desginKey; }
- set
- {
- if (value == null)
- {
- desginKey = DBNull.Value;
- }
- else
- {
- desginKey = value;
- }
- }
- }
- /// <summary>
- /// 全程产线号
- /// </summary>
- [Description("全程产线号")]
- public object MscPline
- {
- get { return mscPline; }
- set
- {
- if (value == null)
- {
- mscPline = DBNull.Value;
- }
- else
- {
- mscPline = value;
- }
- }
- }
- /// <summary>
- /// 全程工序顺序号
- /// </summary>
- [Description("全程工序顺序号")]
- public object BacklogSeq
- {
- get { return backlogSeq; }
- set
- {
- if (value == null)
- {
- backlogSeq = DBNull.Value;
- }
- else
- {
- backlogSeq = value;
- }
- }
- }
- /// <summary>
- /// 工序代码
- /// </summary>
- [Description("工序代码")]
- public object ProcessCode
- {
- get { return processCode; }
- set
- {
- if (value == null)
- {
- processCode = DBNull.Value;
- }
- else
- {
- processCode = value;
- }
- }
- }
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- public object PlineCode
- {
- get { return plineCode; }
- set
- {
- if (value == null)
- {
- plineCode = DBNull.Value;
- }
- else
- {
- plineCode = value;
- }
- }
- }
- /// <summary>
- /// 产线描述
- /// </summary>
- [Description("产线")]
- public object PlineName
- {
- get { return plineName; }
- set
- {
- if (value == null)
- {
- plineName = DBNull.Value;
- }
- else
- {
- plineName = value;
- }
- }
- }
- /// <summary>
- /// 产能井代码
- /// </summary>
- [Description("产能井代码")]
- public object WellCode
- {
- get { return wellCode; }
- set
- {
- if (value == null)
- {
- wellCode = DBNull.Value;
- }
- else
- {
- wellCode = value;
- }
- }
- }
- /// <summary>
- /// 产能井描述
- /// </summary>
- [Description("产能井")]
- public object WellName
- {
- get { return wellName; }
- set
- {
- if (value == null)
- {
- wellName = DBNull.Value;
- }
- else
- {
- wellName = value;
- }
- }
- }
- /// <summary>
- /// 是否警告
- /// </summary>
- [Description("是否警告")]
- public object WarnFl
- {
- get { return warnFl; }
- set
- {
- if (value == null)
- {
- warnFl = DBNull.Value;
- }
- else
- {
- warnFl = value;
- }
- }
- }
- /// <summary>
- /// 警告内容
- /// </summary>
- [Description("警告内容")]
- public object WarnDesc
- {
- get { return warnDesc; }
- set
- {
- if (value == null)
- {
- warnDesc = DBNull.Value;
- }
- else
- {
- warnDesc = value;
- }
- }
- }
- /// <summary>
- /// 是否选取该产线(1:是、0、否)
- /// </summary>
- [Description("选取产线")]
- public object Validflag
- {
- get { return validflag; }
- set
- {
- if (value == null)
- {
- validflag = DBNull.Value;
- }
- else
- {
- validflag = value;
- }
- }
- }
- }
- }
|