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_ORD_DESIGN_STD_WIC所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-01-11 /// public class CraftOrdFdWicEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 水压索引码 /// private string wic = ""; /// /// 协议或Alpha代码(用途码) /// private string useCode = ""; /// /// 协议或Alpha描述(用途描述) /// private string useDesc = ""; /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// private string speclFl = ""; /// /// 序号 /// private decimal? indexSeq = null; /// /// 试验压力(psi)(英制) /// private string pressureY = ""; /// /// 试验压力(MPa)(公制) /// private string pressure = ""; /// /// 试验压力(公式) /// private string formula = ""; /// /// 保压时间(S) /// private string saveTime = ""; /// /// 取大值 /// private bool? getMaxvalue = false; /// /// 取小值 /// private bool? getMinvalue = false; /// /// 标准试验压力系数 /// private decimal? ratioStd = null; /// /// 替代试验压力系数 /// private decimal? ratioReplace = null; /// /// 最大试验压力 /// private string maxPress = ""; /// /// 制程号(内控用) /// private string mscPline = ""; /// /// 工序号(内控用) /// private string processCode = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 数据来源 '0':冶金规范 1:轧管排产录入 /// private string craftSource = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; private string processDesc = ""; private string processCodeC = ""; private bool? chk = false; private string ordLnPk = ""; private string ordSeq = ""; private string memo = ""; private string wicMemo = ""; private string outputStyle = ""; /// /// 选择 /// [Description("选择")] public bool? Chk { get { return chk; } set { chk = value; } } /// /// 二级工序 /// [Description("二级工序")] public string ProcessCodeC { get { return processCodeC; } set { processCodeC = value; } } private string processDescC = ""; /// /// 二级工序 /// [Description("二级工序")] public string ProcessDescC { get { return processDescC; } set { processDescC = value; } } /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] [JsonProperty("desginKey")] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 水压索引码 /// [Description("水压索引码")] [Nullable(false)] [DataLength(20)] [JsonProperty("wic")] public string Wic { get { return wic; } set { wic = value; } } /// /// 协议或Alpha代码(用途码) /// [Description("协议或Alpha")] [Nullable(true)] [DataLength(20)] [JsonProperty("useCode")] public string UseCode { get { return useCode; } set { useCode = value; } } /// /// 协议或Alpha描述(用途描述) /// [Description("协议或Alpha")] [Nullable(true)] [DataLength(100)] [JsonProperty("useDesc")] public string UseDesc { get { return useDesc; } set { useDesc = value; } } /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// [Description("数据类型")] [Nullable(false)] [DataLength(1)] [JsonProperty("speclFl")] public string SpeclFl { get { return speclFl; } set { speclFl = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] [JsonProperty("indexSeq")] public decimal? IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 试验压力(psi)(英制) /// [Description("试验压力(psi)(英制)")] [Nullable(true)] [DataLength(10)] [JsonProperty("pressureY")] public string PressureY { get { return pressureY; } set { pressureY = value; } } /// /// 试验压力(MPa)(公制) /// [Description("试验压力(MPa)(公制)")] [Nullable(true)] [DataLength(10)] [JsonProperty("pressure")] public string Pressure { get { return pressure; } set { pressure = value; } } /// /// 试验压力(公式) /// [Description("试验压力(公式)")] [Nullable(true)] [DataLength(100)] [JsonProperty("formula")] public string Formula { get { return formula; } set { formula = value; } } /// /// 保压时间(S) /// [Description("保压时间(S)")] [Nullable(true)] [DataLength(10)] [JsonProperty("saveTime")] public string SaveTime { get { return saveTime; } set { saveTime = value; } } /// /// 取大值 /// [Description("取大值")] [Nullable(true)] [DataLength(1)] [JsonProperty("getMaxvalue")] public bool? GetMaxvalue { get { return getMaxvalue; } set { getMaxvalue = value; } } /// /// 取小值 /// [Description("取小值")] [Nullable(true)] [DataLength(1)] [JsonProperty("getMinvalue")] public bool? GetMinvalue { get { return getMinvalue; } set { getMinvalue = value; } } /// /// 标准试验压力系数 /// [Description("标准试验压力系数")] [Nullable(true)] [DataLength(22)] [JsonProperty("ratioStd")] public decimal? RatioStd { get { return ratioStd; } set { ratioStd = value; } } /// /// 替代试验压力系数 /// [Description("替代试验压力系数")] [Nullable(true)] [DataLength(22)] [JsonProperty("ratioReplace")] public decimal? RatioReplace { get { return ratioReplace; } set { ratioReplace = value; } } /// /// 最大试验压力 /// [Description("最大试验压力")] [Nullable(true)] [DataLength(10)] [JsonProperty("maxPress")] public string MaxPress { get { return maxPress; } set { maxPress = value; } } /// /// 制程号(内控用) /// [Description("制程号")] [Nullable(false)] [DataLength(10)] [JsonProperty("mscPline")] public string MscPline { get { return mscPline; } set { mscPline = value; } } /// /// 工序号(内控用) /// [Description("工序号")] [Nullable(false)] [DataLength(1)] [JsonProperty("processCode")] public string ProcessCode { get { return processCode; } set { processCode = 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; } } /// /// 数据来源 '0':冶金规范 1:轧管排产录入 /// [Description("数据来源")] [Nullable(true)] [DataLength(1)] [JsonProperty("craftSource")] public string CraftSource { get { return craftSource; } set { craftSource = 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; } } /// /// 工序 /// [Description("工序")] [Nullable(true)] [JsonProperty("processDesc")] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } public string OrdLnPk { get { return ordLnPk; } set { ordLnPk = value; } } public string OrdSeq { get { return ordSeq; } set { ordSeq = value; } } [Description("备注")] public string Memo { get { return memo; } set { memo = value; } } [Description("备注")] public string WicMemo { get { return wicMemo; } set { wicMemo = value; } } [Description("工艺文件输出方式")] public string OutputStyle { get; set; } } }