using System.ComponentModel;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.PlnSaleOrd.炼钢计划.entity
{
///
/// 数据库表CRAFT_LG2_CIC所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:zhou 时间:2018-01-08
///
public class CraftLg2CicEntity
{
///
/// 成分ID(CIC+工艺卡号+6位流水)
///
private string cicGid = "";
///
/// 序号
///
private decimal? xh = null;
///
/// 化学元素代码
///
private string chemCode = "";
///
/// 化学元素描述
///
private string chemName = "";
///
/// 化学元素类型(A:单一元素,B:复合元素)
///
private string chemType = "";
///
/// 复合元素计算公式
///
private string chemFormula = "";
///
/// 标准范围下限符号
///
private string stdminSign = "";
///
/// 标准范围下限
///
private string stdmin = "";
///
/// 标准范围上限符号
///
private string stdmaxSign = "";
///
/// 标准范围上限
///
private string stdmax = "";
///
/// 目标值
///
private string stdtarget = "";
///
/// 限制元素代码
///
private string eleCode = "";
///
/// 限制元素描述
///
private string eleName = "";
///
/// 限制元素下限符号
///
private string eleMinSign = "";
///
/// 限制元素下限
///
private string eleMin = "";
///
/// 限制元素上限符号
///
private string eleMaxSign = "";
///
/// 限制元素上限
///
private string eleMax = "";
///
/// 成分备注
///
private string memo = "";
///
/// 是否必检项()1:是,0:否)
///
private string ischeck = "";
///
/// 是否判定(1:是,0:否)
///
private string isjudge = "";
///
/// 是否报出(1:是,0:否)
///
private string isquote = "";
///
/// 替代元素代码
///
private string repCode = "";
///
/// 替代元素描述
///
private string repName = "";
///
/// 替代元素下限符号
///
private string repMinSign = "";
///
/// 替代元素下限
///
private string repMin = "";
///
/// 替代元素上限符号
///
private string repMaxSign = "";
///
/// 替代元素上限
///
private string repMax = "";
///
/// 替代元素值
///
private string repVal = "";
///
/// 是否新加元素,CIC无元素要求
///
private string newflag = "";
///
/// 成分ID(CIC+工艺卡号+6位流水)
///
[Description("成分ID(CIC+工艺卡号+6位流水)")]
[Nullable(false)]
[DataLength(30)]
public string CicGid
{
get { return cicGid; }
set { cicGid = value; }
}
///
/// 序号
///
[Description("序号")]
[Nullable(false)]
[DataLength(22)]
public decimal? Xh
{
get { return xh; }
set { xh = value; }
}
///
/// 化学元素代码
///
[Description("化学元素代码")]
[Nullable(false)]
[DataLength(5)]
public string ChemCode
{
get { return chemCode; }
set { chemCode = value; }
}
///
/// 化学元素描述
///
[Description("化学元素描述")]
[Nullable(false)]
[DataLength(50)]
public string ChemName
{
get { return chemName; }
set { chemName = value; }
}
///
/// 化学元素类型(A:单一元素,B:复合元素)
///
[Description("化学元素类型(A:单一元素,B:复合元素)")]
[Nullable(false)]
[DataLength(1)]
public string ChemType
{
get { return chemType; }
set { chemType = value; }
}
///
/// 复合元素计算公式
///
[Description("复合元素计算公式")]
[Nullable(true)]
[DataLength(100)]
public string ChemFormula
{
get { return chemFormula; }
set { chemFormula = value; }
}
///
/// 标准范围下限符号
///
[Description("标准范围下限符号")]
[Nullable(true)]
[DataLength(2)]
public string StdminSign
{
get { return stdminSign; }
set { stdminSign = value; }
}
///
/// 标准范围下限
///
[Description("标准范围下限")]
[Nullable(true)]
[DataLength(16)]
public string Stdmin
{
get { return stdmin; }
set { stdmin = value; }
}
///
/// 标准范围上限符号
///
[Description("标准范围上限符号")]
[Nullable(true)]
[DataLength(2)]
public string StdmaxSign
{
get { return stdmaxSign; }
set { stdmaxSign = value; }
}
///
/// 标准范围上限
///
[Description("标准范围上限")]
[Nullable(true)]
[DataLength(16)]
public string Stdmax
{
get { return stdmax; }
set { stdmax = value; }
}
///
/// 目标值
///
[Description("目标值")]
[Nullable(true)]
[DataLength(20)]
public string Stdtarget
{
get { return stdtarget; }
set { stdtarget = value; }
}
///
/// 限制元素代码
///
[Description("限制元素代码")]
[Nullable(true)]
[DataLength(20)]
public string EleCode
{
get { return eleCode; }
set { eleCode = value; }
}
///
/// 限制元素描述
///
[Description("限制元素描述")]
[Nullable(true)]
[DataLength(50)]
public string EleName
{
get { return eleName; }
set { eleName = value; }
}
///
/// 限制元素下限符号
///
[Description("限制元素下限符号")]
[Nullable(true)]
[DataLength(2)]
public string EleMinSign
{
get { return eleMinSign; }
set { eleMinSign = value; }
}
///
/// 限制元素下限
///
[Description("限制元素下限")]
[Nullable(true)]
[DataLength(10)]
public string EleMin
{
get { return eleMin; }
set { eleMin = value; }
}
///
/// 限制元素上限符号
///
[Description("限制元素上限符号")]
[Nullable(true)]
[DataLength(2)]
public string EleMaxSign
{
get { return eleMaxSign; }
set { eleMaxSign = value; }
}
///
/// 限制元素上限
///
[Description("限制元素上限")]
[Nullable(true)]
[DataLength(10)]
public string EleMax
{
get { return eleMax; }
set { eleMax = value; }
}
///
/// 成分备注
///
[Description("成分备注")]
[Nullable(true)]
[DataLength(256)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 是否必检项()1:是,0:否)
///
[Description("是否必检项()1:是,0:否)")]
[Nullable(true)]
[DataLength(1)]
public string Ischeck
{
get { return ischeck; }
set { ischeck = value; }
}
///
/// 是否必检项()1:是,0:否)
///
[Description("是否检项")]
[Nullable(true)]
[DataLength(1)]
public bool BIscheck
{
get { return ischeck=="1"; }
set { ischeck = value?"1":"0"; }
}
///
/// 是否判定(1:是,0:否)
///
[Description("是否判定(1:是,0:否)")]
[Nullable(true)]
[DataLength(1)]
public string Isjudge
{
get { return isjudge; }
set { isjudge = value; }
}
///
/// 是否判定(1:是,0:否)
///
[Description("是否判定")]
[Nullable(true)]
[DataLength(1)]
public bool BIsjudge
{
get { return isjudge=="1"; }
set { isjudge = value?"1":"0"; }
}
///
/// 是否报出(1:是,0:否)
///
[Description("是否报出(1:是,0:否)")]
[Nullable(true)]
[DataLength(1)]
public string Isquote
{
get { return isquote; }
set { isquote = value; }
}
///
/// 是否报出(1:是,0:否)
///
[Description("是否报出")]
[Nullable(true)]
[DataLength(1)]
public bool BIsquote
{
get { return isquote=="1"; }
set { isquote = value?"1":"0"; }
}
///
/// 替代元素代码
///
[Description("替代元素代码")]
[Nullable(true)]
[DataLength(20)]
public string RepCode
{
get { return repCode; }
set { repCode = value; }
}
///
/// 替代元素描述
///
[Description("替代元素描述")]
[Nullable(true)]
[DataLength(50)]
public string RepName
{
get { return repName; }
set { repName = value; }
}
///
/// 替代元素下限符号
///
[Description("替代元素下限符号")]
[Nullable(true)]
[DataLength(2)]
public string RepMinSign
{
get { return repMinSign; }
set { repMinSign = value; }
}
///
/// 替代元素下限
///
[Description("替代元素下限")]
[Nullable(true)]
[DataLength(10)]
public string RepMin
{
get { return repMin; }
set { repMin = value; }
}
///
/// 替代元素上限符号
///
[Description("替代元素上限符号")]
[Nullable(true)]
[DataLength(2)]
public string RepMaxSign
{
get { return repMaxSign; }
set { repMaxSign = value; }
}
///
/// 替代元素上限
///
[Description("替代元素上限")]
[Nullable(true)]
[DataLength(10)]
public string RepMax
{
get { return repMax; }
set { repMax = value; }
}
///
/// 替代元素值
///
[Description("替代元素值")]
[Nullable(true)]
[DataLength(10)]
public string RepVal
{
get { return repVal; }
set { repVal = value; }
}
///
/// 是否新加元素,CIC无元素要求
///
[Description("是否新加元素,CIC无元素要求")]
[Nullable(true)]
[DataLength(1)]
public string Newflag
{
get { return newflag; }
set { newflag = value; }
}
}
}