| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- 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>
- /// 制程
- /// </summary>
- public class CraftOrdDesignMscPlEntity
- {
- private string craftNo;
- [Description("工艺文件号")]
- public string CraftNo
- {
- get { return craftNo; }
- set { craftNo = value; }
- }
- /// <summary>
- /// 工艺序号
- /// </summary>
- private string craftSeq = "";
- /// <summary>
- /// 工艺序号
- /// </summary>
- [Description("工艺序号")]
- [Nullable(true)]
- [DataLength(5)]
- public string CraftSeq
- {
- get { return craftSeq; }
- set { craftSeq = value; }
- }
- /// <summary>
- /// DESGIN_KEY
- /// </summary>
- private string desginKey = "";
- /// <summary>
- /// 全程产线号(COM_MSC_BACKLOG)
- /// </summary>
- private string mscPline = "";
- /// <summary>
- /// 全程途径码
- /// </summary>
- private string wholeBacklog = "";
- /// <summary>
- /// 全程途径描述
- /// </summary>
- private string wholeBacklogDesc = "";
- /// <summary>
- /// 是否设定制程(0:否;1:是)
- /// </summary>
- private string setFl = "";
- /// <summary>
- /// 警告信息
- /// </summary>
- private string warnDesc = "";
- /// <summary>
- /// 合同号
- /// </summary>
- private string ordLnPk = "";
- /// <summary>
- /// 有效标志
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// DESGIN_KEY
- /// </summary>
- [Description("DESGIN_KEY")]
- [Nullable(false)]
- [DataLength(40)]
- public string DesginKey
- {
- get { return desginKey; }
- set { desginKey = value; }
- }
- /// <summary>
- /// 全程产线号(COM_MSC_BACKLOG)
- /// </summary>
- [Description("全程产线号")]
- [Nullable(false)]
- [DataLength(6)]
- public string MscPline
- {
- get { return mscPline; }
- set { mscPline = value; }
- }
- /// <summary>
- /// 全程途径码
- /// </summary>
- [Description("全程途径码")]
- [Nullable(true)]
- [DataLength(100)]
- public string WholeBacklog
- {
- get { return wholeBacklog; }
- set { wholeBacklog = value; }
- }
- /// <summary>
- /// 全程途径描述
- /// </summary>
- [Description("全程途径描述")]
- [Nullable(true)]
- [DataLength(500)]
- public string WholeBacklogDesc
- {
- get { return wholeBacklogDesc; }
- set { wholeBacklogDesc = value; }
- }
- /// <summary>
- /// 是否设定制程(0:否;1:是)
- /// </summary>
- [Description("是否设定制程")]
- [Nullable(true)]
- [DataLength(1)]
- public string SetFl
- {
- get { return setFl; }
- set { setFl = value; }
- }
- /// <summary>
- /// 警告信息
- /// </summary>
- [Description("警告信息")]
- [Nullable(true)]
- [DataLength(100)]
- public string WarnDesc
- {
- get { return warnDesc; }
- set { warnDesc = value; }
- }
- /// <summary>
- /// 合同号
- /// </summary>
- [Description("合同号")]
- [Nullable(true)]
- [DataLength(40)]
- public string OrdLnPk
- {
- get { return ordLnPk; }
- set { ordLnPk = value; }
- }
- /// <summary>
- /// 有效标志
- /// </summary>
- [Description("有效标志")]
- [Nullable(true)]
- [DataLength(1)]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- }
- }
|