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