| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- 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.ZGMil.Entity
- {
- /// <summary>
- /// 数据库表MIL_CHECK_DEATIL_SIMPLE所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:DESKTOP-QMNRTG1 时间:2023-05-22
- /// </summary>
- public class MilCheckDeatilSimpleEntity
- {
- /// <summary>
- /// 炉号
- /// </summary>
- private string judgeStoveNo = "";
- /// <summary>
- /// 缺陷项名称
- /// </summary>
- private string defectItem = "";
- /// <summary>
- /// 废品支
- /// </summary>
- private decimal? wasteBranch = null;
- /// <summary>
- /// 废品吨
- /// </summary>
- private decimal? wasteTons = null;
- /// <summary>
- /// 下线支
- /// </summary>
- private decimal? offlineProduct = null;
- /// <summary>
- /// 缺陷项代码
- /// </summary>
- private string defectCode = "";
- /// <summary>
- /// 实绩编号
- /// </summary>
- private string resultNo = "";
- /// <summary>
- /// 性能批号
- /// </summary>
- private string simpleLotNo = "";
- /// <summary>
- /// 轧管订单编号
- /// </summary>
- private string proPlanId = "";
- /// <summary>
- /// 工序排产序号
- /// </summary>
- private string gxPlanNo = "";
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// 炉号
- /// </summary>
- [Description("炉号")]
- [Nullable(false)]
- [DataLength(20)]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 缺陷项名称
- /// </summary>
- [Description("缺陷项名称")]
- [Nullable(false)]
- [DataLength(20)]
- public string DefectItem
- {
- get { return defectItem; }
- set { defectItem = value; }
- }
- /// <summary>
- /// 废品支
- /// </summary>
- [Description("废品支")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? WasteBranch
- {
- get { return wasteBranch; }
- set { wasteBranch = value; }
- }
- /// <summary>
- /// 废品吨
- /// </summary>
- [Description("废品吨")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? WasteTons
- {
- get { return wasteTons; }
- set { wasteTons = value; }
- }
- /// <summary>
- /// 下线支
- /// </summary>
- [Description("下线支")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? OfflineProduct
- {
- get { return offlineProduct; }
- set { offlineProduct = value; }
- }
- /// <summary>
- /// 缺陷项代码
- /// </summary>
- [Description("缺陷项代码")]
- [Nullable(false)]
- [DataLength(10)]
- public string DefectCode
- {
- get { return defectCode; }
- set { defectCode = value; }
- }
- /// <summary>
- /// 实绩编号
- /// </summary>
- [Description("实绩编号")]
- [Nullable(false)]
- [DataLength(20)]
- public string ResultNo
- {
- get { return resultNo; }
- set { resultNo = value; }
- }
- /// <summary>
- /// 性能批号
- /// </summary>
- [Description("性能批号")]
- [Nullable(true)]
- [DataLength(20)]
- public string SimpleLotNo
- {
- get { return simpleLotNo; }
- set { simpleLotNo = value; }
- }
- /// <summary>
- /// 轧管订单编号
- /// </summary>
- [Description("轧管订单编号")]
- [Nullable(true)]
- [DataLength(20)]
- public string ProPlanId
- {
- get { return proPlanId; }
- set { proPlanId = value; }
- }
- /// <summary>
- /// 工序排产序号
- /// </summary>
- [Description("工序排产序号")]
- [Nullable(true)]
- [DataLength(10)]
- public string GxPlanNo
- {
- get { return gxPlanNo; }
- set { gxPlanNo = value; }
- }
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- [Description("有效标志(1:有效,0:无效)")]
- [Nullable(true)]
- [DataLength(1)]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- }
- }
|