using Newtonsoft.Json;
using System.ComponentModel;
namespace Core.StlMes.Client.Qcm.model
{
///
/// 数据库表COM_BASE_IMPACT_TEMP_C所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
/// 作者:tgcx-test 时间:2018-09-13
///
public class ComBaseImpactTempCEntity
{
///
/// 父表主键
///
private string id = "";
///
/// 从表流水序号
///
private string indexSeq = "";
///
/// 试样尺寸
///
private string itemCodeC = "";
///
/// 最小壁厚
///
private decimal? minH = null;
///
/// 最大壁厚
///
private decimal? maxH = null;
///
/// 递减温度
///
private decimal? tempReduce = null;
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 删除人
///
private string deleteName = "";
///
/// 删除时间
///
private string deleteTime = "";
///
/// 有效标志(1:有效,0:无效)
///
private string validflag = "";
///
/// 备注
///
private string memo = "";
private string minHSign = "";
private string maxHSign = "";
///
/// 父表主键
///
[Description("父表主键")]
[JsonProperty("id")]
public string Id
{
get { return id; }
set { id = value; }
}
///
/// 从表流水序号
///
[Description("从表流水序号")]
[JsonProperty("indexSeq")]
public string IndexSeq
{
get { return indexSeq; }
set { indexSeq = value; }
}
///
/// 试样尺寸
///
[Description("试样尺寸")]
[JsonProperty("itemCodeC")]
public string ItemCodeC
{
get { return itemCodeC; }
set { itemCodeC = value; }
}
///
/// 最小壁厚
///
[Description("壁厚下限")]
[JsonProperty("minH")]
public decimal? MinH
{
get { return minH; }
set { minH = value; }
}
///
/// 最大壁厚
///
[Description("壁厚上限")]
[JsonProperty("maxH")]
public decimal? MaxH
{
get { return maxH; }
set { maxH = value; }
}
///
/// 递减温度
///
[Description("递减温度")]
[JsonProperty("tempReduce")]
public decimal? TempReduce
{
get { return tempReduce; }
set { tempReduce = value; }
}
///
/// 创建人
///
[Description("创建人")]
[JsonProperty("createName")]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[JsonProperty("createTime")]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[JsonProperty("updateName")]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[JsonProperty("updateTime")]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[Description("删除人")]
[JsonProperty("deleteName")]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
[Description("删除时间")]
[JsonProperty("deleteTime")]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志")]
[JsonProperty("validflag")]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 备注
///
[Description("备注")]
[JsonProperty("memo")]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 符号
///
[Description("符号")]
[JsonProperty("minHSign")]
public string MinHSign
{
get { return minHSign; }
set { minHSign = value; }
}
///
/// 符号
///
[Description("符号")]
[JsonProperty("maxHSign")]
public string MaxHSign
{
get { return maxHSign; }
set { maxHSign = value; }
}
}
}