| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.YdmStuffManage.Entity
- {
- /// <summary>
- /// 数据库表FRG_ENTRUSTED_BILL_RESULT所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:DM22222 时间:2017-11-14
- /// </summary>
- public class FrgEntrustedBillResultEntity
- {
- /// <summary>
- /// 委外单号
- /// </summary>
- private string subcontractNo = "";
- /// <summary>
- /// 委外单号序号
- /// </summary>
- private string subcontractNoSeq = "";
- /// <summary>
- /// 倍尺数
- /// </summary>
- private decimal? outnumCut = null;
- /// <summary>
- /// 坯长度
- /// </summary>
- private decimal? lengthOut = null;
- /// <summary>
- /// 合格支数
- /// </summary>
- private decimal? actCount = null;
- /// <summary>
- /// 合格重量
- /// </summary>
- private decimal? actWeight = null;
- /// <summary>
- /// 判定炉号
- /// </summary>
- private string judgeStoveNo = "";
- [Description("判定炉号")]
- [Nullable(false)]
- [DataLength(10)]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 直径
- /// </summary>
- private string dimaterOut = "";
- [Description("直径")]
- [Nullable(false)]
- [DataLength(6)]
- public string DimaterOut
- {
- get { return dimaterOut; }
- set { dimaterOut = value; }
- }
- /// <summary>
- /// 单倍长度
- /// </summary>
- private string lenGpSingle = "";
- [Description("单倍坯长")]
- [Nullable(false)]
- [DataLength(10)]
- public string LenGpSingle
- {
- get { return lenGpSingle; }
- set { lenGpSingle = value; }
- }
- /// <summary>
- /// 委外单号
- /// </summary>
- [Description("委外单号")]
- [Nullable(false)]
- [DataLength(20)]
- public string SubcontractNo
- {
- get { return subcontractNo; }
- set { subcontractNo = value; }
- }
- /// <summary>
- /// 委外单号序号
- /// </summary>
- [Description("委外单号序号")]
- [Nullable(false)]
- [DataLength(20)]
- public string SubcontractNoSeq
- {
- get { return subcontractNoSeq; }
- set { subcontractNoSeq = value; }
- }
- /// <summary>
- /// 倍尺数
- /// </summary>
- [Description("倍尺数")]
- [Nullable(false)]
- [DataLength(2)]
- public decimal? OutnumCut
- {
- get { return outnumCut; }
- set { outnumCut = value; }
- }
- /// <summary>
- /// 坯长度
- /// </summary>
- [Description("坯长度")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? LengthOut
- {
- get { return lengthOut; }
- set { lengthOut = value; }
- }
- /// <summary>
- /// 合格支数
- /// </summary>
- [Description("合格支数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- /// <summary>
- /// 合格重量
- /// </summary>
- [Description("合格重量")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- }
- }
|