| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- 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.物料Bom.entity
- {
- /// <summary>
- /// 数据库表SLM_ORD_DESIGN_BOM_K所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:USER-20150714WV 时间:2016-06-22
- /// </summary>
- public class SlmOrdDesignBomKEntity
- {
- /// <summary>
- /// BOM
- /// </summary>
- private string bom = "";
- /// <summary>
- /// 投入物料编码(接箍码:接箍码 备料码:备料码的成品物料 管体:前工序产出物料)
- /// </summary>
- private string inMaterialNo = "";
- /// <summary>
- /// 投入物料描述
- /// </summary>
- private string inMaterialDesc = "";
- /// <summary>
- /// 物料编码
- /// </summary>
- private string outMaterialNo = "";
- /// <summary>
- /// 物料描述
- /// </summary>
- private string outMaterialDesc = "";
- /// <summary>
- /// 备料码组号(不是备料码则默认为0)
- /// </summary>
- private string groupNum = "";
- /// <summary>
- /// 投入物料标识(1.管体 2.接箍码 3.备料码)
- /// </summary>
- private string mark = "";
- /// <summary>
- /// BOM
- /// </summary>
- [Description("BOM")]
- [Nullable(false)]
- [DataLength(40)]
- public string Bom
- {
- get { return bom; }
- set { bom = value; }
- }
- /// <summary>
- /// 投入物料编码(接箍码:接箍码 备料码:备料码的成品物料 管体:前工序产出物料)
- /// </summary>
- [Description("投入物料编码")]
- [Nullable(false)]
- [DataLength(30)]
- public string InMaterialNo
- {
- get { return inMaterialNo; }
- set { inMaterialNo = value; }
- }
- /// <summary>
- /// 投入物料描述
- /// </summary>
- [Description("投入物料描述")]
- [Nullable(true)]
- [DataLength(100)]
- public string InMaterialDesc
- {
- get { return inMaterialDesc; }
- set { inMaterialDesc = value; }
- }
- /// <summary>
- /// 物料编码
- /// </summary>
- [Description("物料编码")]
- [Nullable(false)]
- [DataLength(30)]
- public string OutMaterialNo
- {
- get { return outMaterialNo; }
- set { outMaterialNo = value; }
- }
- /// <summary>
- /// 物料描述
- /// </summary>
- [Description("物料描述")]
- [Nullable(true)]
- [DataLength(100)]
- public string OutMaterialDesc
- {
- get { return outMaterialDesc; }
- set { outMaterialDesc = value; }
- }
- /// <summary>
- /// 备料码组号(不是备料码则默认为0)
- /// </summary>
- [Description("备料码组号")]
- [Nullable(false)]
- [DataLength(2)]
- public string GroupNum
- {
- get { return groupNum; }
- set { groupNum = value; }
- }
- /// <summary>
- /// 投入物料标识(1.管体 2.接箍码 3.备料码)
- /// </summary>
- [Description("投入物料标识")]
- [Nullable(true)]
- [DataLength(1)]
- public string Mark
- {
- get { return mark; }
- set { mark = value; }
- }
- }
- }
|