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