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_STRESSRING_PARM所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2018-08-27 /// public class PipeStressringParmEntity { /// /// 应力环编号 /// private string stressringNo = ""; /// /// 应力环类型(A类、B类) /// private string stressringType = ""; /// /// 无注释 /// private string v1 = ""; /// /// 无注释 /// private string v2 = ""; /// /// 无注释 /// private string v3 = ""; /// /// 无注释 /// private string v4 = ""; /// /// 无注释 /// private string v5 = ""; /// /// 无注释 /// private string v6 = ""; /// /// 无注释 /// private string v7 = ""; /// /// 无注释 /// private string v8 = ""; /// /// 应力环编号 /// [Description("应力环编号")] [Nullable(false)] [DataLength(10)] public string StressringNo { get { return stressringNo; } set { stressringNo = value; } } /// /// 应力环类型(A类、B类) /// [Description("应力环类型")] [Nullable(true)] [DataLength(1)] public string StressringType { get { return stressringType; } set { stressringType = value; } } /// /// 无注释 /// [Description("V1")] [Nullable(true)] [DataLength(32)] public string V1 { get { return v1; } set { v1 = value; } } /// /// 无注释 /// [Description("V2")] [Nullable(true)] [DataLength(32)] public string V2 { get { return v2; } set { v2 = value; } } /// /// 无注释 /// [Description("V3")] [Nullable(true)] [DataLength(32)] public string V3 { get { return v3; } set { v3 = value; } } /// /// 无注释 /// [Description("V4")] [Nullable(true)] [DataLength(32)] public string V4 { get { return v4; } set { v4 = value; } } /// /// 无注释 /// [Description("V5")] [Nullable(true)] [DataLength(32)] public string V5 { get { return v5; } set { v5 = value; } } /// /// 无注释 /// [Description("V6")] [Nullable(true)] [DataLength(32)] public string V6 { get { return v6; } set { v6 = value; } } /// /// 无注释 /// [Description("V7")] [Nullable(true)] [DataLength(32)] public string V7 { get { return v7; } set { v7 = value; } } /// /// 无注释 /// [Description("V8")] [Nullable(true)] [DataLength(32)] public string V8 { get { return v8; } set { v8 = value; } } } }