| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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_J所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:USER-20150714WV 时间:2016-06-22
- /// </summary>
- public class SlmOrdDesignBomJEntity
- {
- /// <summary>
- /// BOM
- /// </summary>
- private string bom = "";
- /// <summary>
- /// 接箍BOM
- /// </summary>
- private string bomJg = "";
- /// <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>
- /// 接箍BOM
- /// </summary>
- [Description("接箍BOM")]
- [Nullable(false)]
- [DataLength(40)]
- public string BomJg
- {
- get { return bomJg; }
- set { bomJg = 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; }
- }
- }
- }
|