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.Mcp.Control.Entity { [Serializable] /// /// 数据库表PORT_HTT_BATCH_SAMPLE_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20180117CCCC 时间:2018-06-07 /// public class PortHttBatchSampleResultEntityTotal { /// /// 材料支数(实际) /// private decimal? actCount = null; private decimal? passCount = null; private decimal? failCount = null; private decimal? offLineCount = null; private decimal? newStoveCount = null; private decimal? actWeight = null; private decimal? passWeight = null; private decimal? failWeight = null; private decimal? offLineWeight = null; private decimal? newStoveWeight = null; private List portHttBatchSampleResultEntitys = null; public List PortHttBatchSampleResultEntitys { get { return portHttBatchSampleResultEntitys; } set { portHttBatchSampleResultEntitys = value; } } /// /// 实际热处理取样分批(性能批号) /// private string phyBatchNo = ""; /// /// 材料支数(实际) /// [Description("作业支数")] [Nullable(true)] [DataLength(3)] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 材料支数(实际) /// [Description("作业重量")] [Nullable(true)] [DataLength(3)] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } /// /// 材料支数(实际) /// [Description("合格支数")] [Nullable(true)] [DataLength(3)] public decimal? PassCount { get { return passCount; } set { passCount = value; } } /// /// 材料支数(实际) /// [Description("废品支数")] [Nullable(true)] [DataLength(3)] public decimal? FailCount { get { return failCount; } set { failCount = value; } } /// /// 材料支数(实际) /// [Description("离线支数")] [Nullable(true)] [DataLength(3)] public decimal? OffLineCount { get { return offLineCount; } set { offLineCount = value; } } /// /// 材料支数(实际) /// [Description("另组炉支数")] [Nullable(true)] [DataLength(3)] public decimal? NewStoveCount { get { return newStoveCount; } set { newStoveCount = value; } } /// /// 材料支数(实际) /// [Description("合格重量")] [Nullable(true)] [DataLength(3)] public decimal? PassWeight { get { return passWeight; } set { passWeight = value; } } /// /// 材料支数(实际) /// [Description("废品重量")] [Nullable(true)] [DataLength(3)] public decimal? FailWeight { get { return failWeight; } set { failWeight = value; } } /// /// 材料支数(实际) /// [Description("离线重量")] [Nullable(true)] [DataLength(3)] public decimal? OffLineWeight { get { return offLineWeight; } set { offLineWeight = value; } } /// /// 材料支数(实际) /// [Description("另组炉重量")] [Nullable(true)] [DataLength(3)] public decimal? NewStoveWeight { get { return newStoveWeight; } set { newStoveWeight = value; } } /// /// 实际热处理取样分批(性能批号) /// [Description("批号")] [Nullable(true)] [DataLength(10)] public string PhyBatchNo { get { return phyBatchNo; } set { phyBatchNo = value; } } } }