| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- using Core.Mes.Client.Comm.Attribute;
- namespace Core.StlMes.Client.SaleOrder
- {
- /// <summary>
- /// 数据库表SLM_BASE_MATERIAL_C_PL所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:Chenxi-PC2 时间:2015-09-11
- /// </summary>
- public class SlmBaseMaterialCPlEntity
- {
- private string plineLevel;
- [Description("优先级")]
- public string PlineLevel
- {
- get { return plineLevel; }
- set { plineLevel = value; }
- }
- /// <summary>
- /// 投入物料编码
- /// </summary>
- private string inMaterialNo = "";
- /// <summary>
- /// 产出物料编码
- /// </summary>
- private string outMaterialNo = "";
- /// <summary>
- /// 产线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 产线描述
- /// </summary>
- private string plineName = "";
- /// <summary>
- /// 小时能力(t/h)
- /// </summary>
- private decimal? hrCapcty = null;
- /// <summary>
- /// 成材率(%)
- /// </summary>
- private decimal? prdRate = null;
- /// <summary>
- /// 禁用标识(依据监制点的信息可以获取)
- /// </summary>
- private bool disableFl = false;
- /// <summary>
- /// 创建人
- /// </summary>
- private string createName = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 修改人
- /// </summary>
- private string updateName = "";
- /// <summary>
- /// 修改时间
- /// </summary>
- private string updateTime = "";
- /// <summary>
- /// 删除人
- /// </summary>
- private string deleteName = "";
- /// <summary>
- /// 删除时间
- /// </summary>
- private string deleteTime = "";
- private string inMaterialDesc = "";
- private string outMaterialDesc = "";
- private string processingCost = "";
- /// <summary>
- /// 加工成本
- /// </summary>
- [Description("加工费")]
- [Nullable(false)]
- [DataLength(30)]
- public string ProcessingCost
- {
- get { return processingCost; }
- set { processingCost = value; }
- }
- private string totalCost = "";
- /// <summary>
- /// 完全成本
- /// </summary>
- [Description("工序成本")]
- [Nullable(false)]
- [DataLength(30)]
- public string TotalCost
- {
- get { return totalCost; }
- set { totalCost = value; }
- }
- /// <summary>
- /// 投入物料编码
- /// </summary>
- [Description("投入物料编码")]
- [Nullable(false)]
- [DataLength(30)]
- public string InMaterialNo
- {
- get { return inMaterialNo; }
- set { inMaterialNo = value; }
- }
- /// <summary>
- /// 产出物料编码
- /// </summary>
- [Description("产出物料编码")]
- [Nullable(false)]
- [DataLength(30)]
- public string OutMaterialNo
- {
- get { return outMaterialNo; }
- set { outMaterialNo = value; }
- }
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- [Nullable(false)]
- [DataLength(20)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 产线描述
- /// </summary>
- [Description("产线描述")]
- [Nullable(false)]
- [DataLength(100)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 小时能力(t/h)
- /// </summary>
- [Description("小时能力(支/小时)")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? HrCapcty
- {
- get { return hrCapcty; }
- set { hrCapcty = value; }
- }
- /// <summary>
- /// 成材率(%)
- /// </summary>
- [Description("成材率(%)")]
- [Nullable(true)]
- [DataLength(4)]
- public decimal? PrdRate
- {
- get { return prdRate; }
- set { prdRate = value; }
- }
- /// <summary>
- /// 禁用标识(依据监制点的信息可以获取)
- /// </summary>
- [Description("禁用标识")]
- [Nullable(true)]
- [DataLength(1)]
- public bool DisableFl
- {
- get { return disableFl; }
- set { disableFl = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- [Nullable(true)]
- [DataLength(20)]
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- [Description("修改人")]
- [Nullable(true)]
- [DataLength(20)]
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Description("修改时间")]
- [Nullable(true)]
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /// <summary>
- /// 删除人
- /// </summary>
- [Description("删除人")]
- [Nullable(true)]
- [DataLength(20)]
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /// <summary>
- /// 删除时间
- /// </summary>
- [Description("删除时间")]
- [Nullable(true)]
- public string DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /// <summary>
- /// 投入物料
- /// </summary>
- [Description("投入物料")]
- public string InMaterialDesc
- {
- get { return inMaterialDesc; }
- set { inMaterialDesc = value; }
- }
- /// <summary>
- /// 产出物料
- /// </summary>
- [Description("产出物料")]
- public string OutMaterialDesc
- {
- get { return outMaterialDesc; }
- set { outMaterialDesc = value; }
- }
- }
- }
|