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.Lims.Data.PipeAndOutdec.封装类.实体类 { /// /// 数据库表PIPE_CHECKCONSIGN_SAVE_RECORDS所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2020-05-28 /// public class PipeCheckconsignSaveRecordsEntity { /// /// 检验编号 /// private string checkNo = ""; /// /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水 /// private string sampleNo = ""; /// /// 钢号 /// private string steelNo = ""; /// /// 炉号 /// private string heatNo = ""; /// /// 外径 /// private string dimater = ""; /// /// 壁厚 /// private string height = ""; /// /// 试样组代码 /// private string phyCodeMax = ""; /// /// 试样组名称 /// private string phyNameMax = ""; /// /// 数量 /// private decimal? acount = null; /// /// 保存人 /// private string saveName = ""; /// /// 保存时间 /// private string saveTime = ""; /// /// 销毁人 /// private string destroyName = ""; /// /// 销毁时间 /// private string destroyTime = ""; /// /// 检验编号 /// [Description("检验编号")] [Nullable(false)] [DataLength(50)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水 /// [Description("试样号")] [Nullable(false)] [DataLength(50)] public string SampleNo { get { return sampleNo; } set { sampleNo = value; } } /// /// 钢号 /// [Description("钢号")] [Nullable(true)] [DataLength(50)] public string SteelNo { get { return steelNo; } set { steelNo = value; } } /// /// 炉号 /// [Description("炉号 ")] [Nullable(true)] [DataLength(50)] public string HeatNo { get { return heatNo; } set { heatNo = value; } } /// /// 外径 /// [Description("外径")] [Nullable(true)] [DataLength(20)] public string Dimater { get { return dimater; } set { dimater = value; } } /// /// 壁厚 /// [Description("壁厚")] [Nullable(true)] [DataLength(20)] public string Height { get { return height; } set { height = value; } } /// /// 试样组代码 /// [Description("试样组代码")] [Nullable(false)] [DataLength(50)] public string PhyCodeMax { get { return phyCodeMax; } set { phyCodeMax = value; } } /// /// 试样组名称 /// [Description("试样组名称")] [Nullable(false)] [DataLength(100)] public string PhyNameMax { get { return phyNameMax; } set { phyNameMax = value; } } /// /// 数量 /// [Description("数量")] [Nullable(true)] [DataLength(22)] public decimal? Acount { get { return acount; } set { acount = value; } } /// /// 保存人 /// [Description("保存人")] [Nullable(true)] [DataLength(20)] public string SaveName { get { return saveName; } set { saveName = value; } } /// /// 保存时间 /// [Description("保存时间")] [Nullable(true)] public string SaveTime { get { return saveTime; } set { saveTime = value; } } /// /// 销毁人 /// [Description("销毁人")] [Nullable(true)] [DataLength(20)] public string DestroyName { get { return destroyName; } set { destroyName = value; } } /// /// 销毁时间 /// [Description("销毁时间")] [Nullable(true)] public string DestroyTime { get { return destroyTime; } set { destroyTime = value; } } } }