using Core.Mes.Client.Comm.Attribute;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.SaleOrder
{
///
/// 数据库表CRAFT_FILE_LV2_C所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
/// 作者:tgcx-test 时间:2016-07-04
///
public class CraftFileLv2CEntity
{
///
/// 二级工艺文件适用表主键
///
private string pk = "";
///
/// 二级工艺文件表主键
///
private string fileLv2Pk = "";
///
/// 品名描述
///
private string producname = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 代码
///
private string steelcode = "";
///
/// 名称
///
private string steelname = "";
///
/// 标准代码
///
private string stdCode = "";
///
/// 标准名称
///
private string stdName = "";
///
/// 钢种代码(GZ0001)
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 扣型代码
///
private string modelCode = "";
///
/// 扣型描述
///
private string modelDesc = "";
///
/// 适用外径下限值
///
private string minD = "";
///
/// 适用外径上限值
///
private string maxD = "";
///
/// 适用壁厚下限值
///
private string minH = "";
///
/// 适用壁厚上限值
///
private string maxH = "";
///
/// 适用外径下限值符号
///
private string minDSign = "";
///
/// 适用外径上限值符号
///
private string maxDSign = "";
///
/// 适用壁厚下限值符号
///
private string minHSign = "";
///
/// 适用壁厚上限值符号
///
private string maxHSign = "";
///
/// 创建人
///
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 craftNo = "";
///
/// 二级工艺文件适用表主键
///
[Description("二级工艺文件适用表主键")]
[Nullable(false)]
[DataLength(5)]
[JsonProperty("pk")]
public string Pk
{
get { return pk; }
set { pk = value; }
}
///
/// 二级工艺文件表主键
///
[Description("二级工艺文件表主键")]
[Nullable(false)]
[DataLength(5)]
[JsonProperty("fileLv2Pk")]
public string FileLv2Pk
{
get { return fileLv2Pk; }
set { fileLv2Pk = value; }
}
///
/// 品名描述
///
[Description("适用品名")]
[Nullable(true)]
[DataLength(3000)]
[JsonProperty("producname")]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 品名代码
///
[Description("品名代码")]
[Nullable(true)]
[DataLength(600)]
[JsonProperty("produccode")]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 代码
///
[Description("代码")]
[Nullable(true)]
[DataLength(300)]
[JsonProperty("steelcode")]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 名称
///
[Description("适用钢级")]
[Nullable(true)]
[DataLength(3000)]
[JsonProperty("steelname")]
public string Steelname
{
get { return steelname; }
set { steelname = value; }
}
///
/// 标准代码
///
[Description("标准代码")]
[Nullable(true)]
[DataLength(600)]
[JsonProperty("stdCode")]
public string StdCode
{
get { return stdCode; }
set { stdCode = value; }
}
///
/// 标准名称
///
[Description("适用标准")]
[Nullable(true)]
[DataLength(300)]
[JsonProperty("stdName")]
public string StdName
{
get { return stdName; }
set { stdName = value; }
}
///
/// 钢种代码(GZ0001)
///
[Description("钢种代码(GZ0001)")]
[Nullable(true)]
[DataLength(180)]
[JsonProperty("gradecode")]
public string Gradecode
{
get { return gradecode; }
set { gradecode = value; }
}
///
/// 钢种名称
///
[Description("适用钢种")]
[Nullable(true)]
[DataLength(3000)]
[JsonProperty("gradename")]
public string Gradename
{
get { return gradename; }
set { gradename = value; }
}
///
/// 扣型代码
///
[Description("扣型代码")]
[Nullable(true)]
[DataLength(600)]
[JsonProperty("modelCode")]
public string ModelCode
{
get { return modelCode; }
set { modelCode = value; }
}
///
/// 扣型描述
///
[Description("适用扣型")]
[Nullable(true)]
[DataLength(3000)]
[JsonProperty("modelDesc")]
public string ModelDesc
{
get { return modelDesc; }
set { modelDesc = value; }
}
///
/// 适用外径下限值
///
[Description("下限值")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("minD")]
public string MinD
{
get { return minD; }
set { minD = value; }
}
///
/// 适用外径上限值
///
[Description("上限值")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("maxD")]
public string MaxD
{
get { return maxD; }
set { maxD = value; }
}
///
/// 适用壁厚下限值
///
[Description("下限值")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("minH")]
public string MinH
{
get { return minH; }
set { minH = value; }
}
///
/// 适用壁厚上限值
///
[Description("上限值")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("maxH")]
public string MaxH
{
get { return maxH; }
set { maxH = value; }
}
///
/// 适用外径下限值符号
///
[Description("符号")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("minDSign")]
public string MinDSign
{
get { return minDSign; }
set { minDSign = value; }
}
///
/// 适用外径上限值符号
///
[Description("符号")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("maxDSign")]
public string MaxDSign
{
get { return maxDSign; }
set { maxDSign = value; }
}
///
/// 适用壁厚下限值符号
///
[Description("符号")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("minHSign")]
public string MinHSign
{
get { return minHSign; }
set { minHSign = value; }
}
///
/// 适用壁厚上限值符号
///
[Description("符号")]
[Nullable(true)]
[DataLength(10)]
[JsonProperty("maxHSign")]
public string MaxHSign
{
get { return maxHSign; }
set { maxHSign = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("createName")]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
[JsonProperty("createTime")]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("updateName")]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
[JsonProperty("updateTime")]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[Description("删除人")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("deleteName")]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
[Description("删除时间")]
[Nullable(true)]
[JsonProperty("deleteTime")]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志")]
[Nullable(false)]
[DataLength(1)]
[JsonProperty("validflag")]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 适用一级工艺文件
///
[Description("适用一级工艺文件")]
[Nullable(false)]
[DataLength(1)]
[JsonProperty("craftNo")]
public string CraftNo
{
get { return craftNo; }
set { craftNo = value; }
}
}
}