| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- 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.SaleOrder
- {
- /// <summary>
- /// 数据库表SLM_ORD_DESIGN_MSC_PL所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:Chenxi-PC2 时间:2015-09-16
- /// </summary>
- public class SlmOrdDesignMscPlEntity
- {
- /// <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 setFlDesc = "";
- /// <summary>
- /// 设定制程
- /// </summary>
- [Description("设定制程")]
- public string SetFlDesc
- {
- get { return setFlDesc; }
- set { setFlDesc = value; }
- }
- /// <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; }
- }
- }
- }
|