using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity {/// /// 数据库表VRP_JUMPINGUP_FACE_D所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-201412141732 时间:2016-06-06 /// public class VrpJumpingupFaceDEntity { /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// private string resultNo = ""; /// /// 外观检查主记录实绩编号 /// private string mResultNo = ""; /// /// 序号 /// private string sqeNo = ""; /// /// LEU值(mm) /// private string leuD = null; /// /// D4最大值(mm) /// private string d4Max = null; /// /// D4最小值(mm) /// private string d4Min = null; /// /// 不圆度(mm) /// private string ellipVal = null; /// /// 加厚壁厚最大值(mm) /// private string upwMax = null; /// /// 加厚壁厚最小值(mm) /// private string upwMin = null; /// /// 壁厚不匀值(mm) /// private string wallVal = null; /// /// 通径值(mm) /// private string driftingVal = null; /// /// 创建时间 /// private string createTime = ""; /// /// 创建人 /// private string createName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// [Description("实绩编号(机组+工序点代码+年月日+6位流水)")] [Nullable(false)] [DataLength(24)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 外观检查主记录实绩编号 /// [Description("外观检查主记录实绩编号")] [Nullable(false)] [DataLength(22)] public string MResultNo { get { return mResultNo; } set { mResultNo = value; } } /// /// 序号 /// [Description("序号")] [Nullable(true)] [DataLength(10)] public string SqeNo { get { return sqeNo; } set { sqeNo = value; } } /// /// LEU值(mm) /// [Description("LEU值(mm)")] [Nullable(true)] [DataLength(8)] public string LeuD { get { return leuD; } set { leuD = value; } } /// /// D4最大值(mm) /// [Description("D4最大值(mm)")] [Nullable(true)] [DataLength(8)] public string D4Max { get { return d4Max; } set { d4Max = value; } } /// /// D4最小值(mm) /// [Description("D4最小值(mm)")] [Nullable(true)] [DataLength(8)] public string D4Min { get { return d4Min; } set { d4Min = value; } } /// /// 不圆度(mm) /// [Description("不圆度(mm)")] [Nullable(true)] [DataLength(8)] public string EllipVal { get { return ellipVal; } set { ellipVal = value; } } /// /// 加厚壁厚最大值(mm) /// [Description("加厚壁厚最大值(mm)")] [Nullable(true)] [DataLength(8)] public string UpwMax { get { return upwMax; } set { upwMax = value; } } /// /// 加厚壁厚最小值(mm) /// [Description("加厚壁厚最小值(mm)")] [Nullable(true)] [DataLength(8)] public string UpwMin { get { return upwMin; } set { upwMin = value; } } /// /// 壁厚不匀值(mm) /// [Description("壁厚不匀值(mm)")] [Nullable(true)] [DataLength(8)] public string WallVal { get { return wallVal; } set { wallVal = value; } } /// /// 通径值(mm) /// [Description("通径值(mm)")] [Nullable(true)] [DataLength(8)] public string DriftingVal { get { return driftingVal; } set { driftingVal = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } } }