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.LgResMgt.Mcms.entity
{
///
/// 数据库表BUY_GP_CHECK_RESULT所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:朱少波 时间:2021-01-13
///
public class BuyGpCheckResultEntity
{
///
/// 检查记录流水号
///
private string checkNo = "";
///
/// 原厂炉号
///
private string judgeStoveNo = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 执行标准
///
private string standard = "";
///
/// 直径
///
private string actDimater = null;
///
/// 检查支数(来料支数)
///
private decimal? proNum = null;
///
/// 抽检支数
///
private decimal? checkNum = null;
///
/// 合格支数
///
private decimal? passNum = null;
///
/// 不合支数
///
private decimal? unpassNum = null;
///
/// 操作班次
///
private string proShift = "";
///
/// 操作班组
///
private string proGroup = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 操作时间
///
private string proTime = "";
///
/// 备注
///
private string memo = "";
///
/// 操作人
///
private string proUser = "";
///
/// 预报流水号
///
private string predictionId = "";
///
/// 检查记录流水号
///
[Description("流水号")]
[Nullable(false)]
[DataLength(20)]
public string CheckNo
{
get { return checkNo; }
set { checkNo = value; }
}
///
/// 原厂炉号
///
[Description("原厂炉号")]
[Nullable(true)]
[DataLength(20)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 钢级(牌号)代码
///
[Description("钢级(牌号)代码")]
[Nullable(true)]
[DataLength(10)]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 钢级(牌号)名称
///
[Description("钢级/牌号")]
[Nullable(true)]
[DataLength(100)]
public string Steelname
{
get { return steelname; }
set { steelname = value; }
}
///
/// 执行标准
///
[Description("执行标准")]
[Nullable(true)]
[DataLength(100)]
public string Standard
{
get { return standard; }
set { standard = value; }
}
///
/// 直径
///
[Description("规格")]
[Nullable(true)]
[DataLength(8)]
public string ActDimater
{
get { return actDimater; }
set { actDimater = value; }
}
///
/// 检查支数(来料支数)
///
[Description("检查支数")]
[Nullable(true)]
[DataLength(3)]
public decimal? ProNum
{
get { return proNum; }
set { proNum = value; }
}
///
/// 抽检支数
///
[Description("抽检支数")]
[Nullable(true)]
[DataLength(3)]
public decimal? CheckNum
{
get { return checkNum; }
set { checkNum = value; }
}
///
/// 合格支数
///
[Description("合格支数")]
[Nullable(true)]
[DataLength(3)]
public decimal? PassNum
{
get { return passNum; }
set { passNum = value; }
}
///
/// 不合支数
///
[Description("不合支数")]
[Nullable(true)]
[DataLength(3)]
public decimal? UnpassNum
{
get { return unpassNum; }
set { unpassNum = value; }
}
///
/// 操作班次
///
[Description("操作班次")]
[Nullable(true)]
[DataLength(1)]
public string ProShift
{
get { return proShift; }
set { proShift = value; }
}
///
/// 操作班组
///
[Description("操作班组")]
[Nullable(true)]
[DataLength(1)]
public string ProGroup
{
get { return proGroup; }
set { proGroup = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 操作时间
///
[Description("操作时间")]
[Nullable(true)]
public string ProTime
{
get { return proTime; }
set { proTime = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(400)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 操作人
///
[Description("操作人")]
[Nullable(true)]
[DataLength(20)]
public string ProUser
{
get { return proUser; }
set { proUser = value; }
}
///
/// 预报流水号
///
[Description("预报流水号")]
[Nullable(true)]
[DataLength(40)]
public string PredictionId
{
get { return predictionId; }
set { predictionId = value; }
}
///
/// 报告
///
[Description("报告")]
[Nullable(true)]
[DataLength(40)]
public string ReportPath { get; set; }
}
}