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
{
public class FrmGPRuleEntity
{
private string judgeResultCode = "";
///
/// 综合判定结果代码
///
[Description("综合判定结果代码")]
[Nullable(true)]
[DataLength(100)]
public string JudgeResultCode
{
get;
set;
}
private string instancyFlag = "";
///
/// 是否紧急放行(0正常,1紧急放行)
///
[Description("是否紧急放行")]
[Nullable(true)]
[DataLength(100)]
public string InstancyFlag
{
get;
set;
}
private string stoveNo = "";
///
/// 熔炼炉号
///
[Description("熔炼炉号")]
[Nullable(true)]
[DataLength(100)]
public string StoveNo
{
get;
set;
}
private string judgeStoveNo = "";
///
/// 判定炉号
///
[Description("判定炉号")]
[Nullable(true)]
[DataLength(100)]
public string JudgeStoveNo
{
get;
set;
}
private string gradecode = "";
///
/// 钢种代码
///
[Description("钢种代码")]
[Nullable(true)]
[DataLength(100)]
public string Gradecode
{
get;
set;
}
private string gradename = "";
///
/// 钢种名称
///
[Description("钢种名称")]
[Nullable(true)]
[DataLength(100)]
public string Gradename
{
get;
set;
}
private string dimater = "";
///
/// 直径或宽度(实际)
///
[Description("直径")]
[Nullable(true)]
[DataLength(100)]
public string Dimater
{
get;
set;
}
private string fixNum = "";
///
/// 倍尺数(实际)
///
[Description("倍尺数")]
[Nullable(true)]
[DataLength(100)]
public string FixNum
{
get;
set;
}
private string fixLen = "";
///
/// 单倍长度(实际)
///
[Description("单倍长度")]
[Nullable(true)]
[DataLength(100)]
public string FixLen
{
get;
set;
}
private string actLen = "";
///
/// 坯料长度(实际)
///
[Description("长度")]
[Nullable(true)]
[DataLength(100)]
public string ActLen
{
get;
set;
}
private string actCount = "";
///
/// 材料支数(实际)
///
[Description("支数")]
[Nullable(true)]
[DataLength(100)]
public string ActCount
{
get;
set;
}
private string actWeight = "";
///
/// 重量
///
[Description("重量")]
[Nullable(true)]
[DataLength(100)]
public string ActWeight
{
get;
set;
}
private string storageNo = "";
///
/// 仓库代码
///
[Description("仓库代码")]
[Nullable(true)]
[DataLength(100)]
public string StorageNo
{
get;
set;
}
private string storageName = "";
///
/// 仓库代码
///
[Description("仓库名称")]
[Nullable(true)]
[DataLength(100)]
public string StorageName
{
get;
set;
}
private string locationNo = "";
///
/// 库位代码
///
[Description("库位代码")]
[Nullable(true)]
[DataLength(100)]
public string LocationNo
{
get;
set;
}
private string locationName = "";
///
/// 库位代码
///
[Description("库位名称")]
[Nullable(true)]
[DataLength(100)]
public string LocationName
{
get;
set;
}
private string judgeResultName = "";
///
/// 综合判定结果代码
///
[Description("综合判定结果")]
[Nullable(true)]
[DataLength(100)]
public string JudgeResultName
{
get;
set;
}
private string inActCount = "";
///
/// 红冲支数
///
[Description("红冲支数")]
[Nullable(true)]
[DataLength(100)]
public string InActCount
{
get;
set;
}
}
}