| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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_C所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:USER-20150714WV 时间:2016-06-22
- /// </summary>
- public class SlmOrdDesignBomCEntity
- {
- /// <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>
- /// 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; }
- }
- }
- }
|