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_ROTEXP_FACE_D所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-201412141732 时间:2016-06-15 /// public class VrpRotexpFaceDEntity { /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// private string resultNo = ""; /// /// 序号(管号) /// private string sqeNo = ""; /// /// 管D1 /// private string endD1 = null; /// /// 管D2 /// private string endD2 = null; /// /// 管S1 /// private string endS1 = null; /// /// 管S2 /// private string endS2 = null; /// /// 管S3 /// private string endS3 = null; /// /// 管S4 /// private string endS4 = 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(10)] public string SqeNo { get { return sqeNo; } set { sqeNo = value; } } /// /// 管D1 /// [Description("管D1")] [Nullable(true)] [DataLength(8)] public string EndD1 { get { return endD1; } set { endD1 = value; } } /// /// 管D2 /// [Description("管D2")] [Nullable(true)] [DataLength(8)] public string EndD2 { get { return endD2; } set { endD2 = value; } } /// /// 管S1 /// [Description("管S1")] [Nullable(true)] [DataLength(8)] public string EndS1 { get { return endS1; } set { endS1 = value; } } /// /// 管S2 /// [Description("管S2")] [Nullable(true)] [DataLength(8)] public string EndS2 { get { return endS2; } set { endS2 = value; } } /// /// 管S3 /// [Description("管S3")] [Nullable(true)] [DataLength(8)] public string EndS3 { get { return endS3; } set { endS3 = value; } } /// /// 管S4 /// [Description("管S4")] [Nullable(true)] [DataLength(8)] public string EndS4 { get { return endS4; } set { endS4 = 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; } } } }