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 {/// /// /// 数据库表MCH_HREAD_RESULT_D所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160925CXYF 时间:2016-12-28 /// public class MchHreadResultDEntity { /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// private string resultNo = ""; /// /// 实绩编号序号 /// private string resultNoSqe = ""; /// /// 紧密距(mm) /// private string standoff = ""; /// /// 锥度in/in /// private string taper = ""; /// /// 螺距 /// private string pitch = ""; /// /// 齿高 /// private string threadH = ""; /// /// L4 /// private string l4Val = ""; /// /// AI /// private string aiVal = ""; /// /// LC /// private string lcVal = ""; /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// [Description("实绩编号(机组+工序点代码+年月日+6位流水)")] [Nullable(false)] [DataLength(24)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 实绩编号序号 /// [Description("实绩编号序号")] [Nullable(false)] [DataLength(24)] public string ResultNoSqe { get { return resultNoSqe; } set { resultNoSqe = value; } } /// /// 紧密距(mm) /// [Description("紧密距(mm)")] [Nullable(true)] [DataLength(20)] public string Standoff { get { return standoff; } set { standoff = value; } } /// /// 锥度in/in /// [Description("锥度in/in")] [Nullable(true)] [DataLength(20)] public string Taper { get { return taper; } set { taper = value; } } /// /// 螺距 /// [Description("螺距")] [Nullable(true)] [DataLength(20)] public string Pitch { get { return pitch; } set { pitch = value; } } /// /// 齿高 /// [Description("齿高")] [Nullable(true)] [DataLength(20)] public string ThreadH { get { return threadH; } set { threadH = value; } } /// /// L4 /// [Description("L4")] [Nullable(true)] [DataLength(20)] public string L4Val { get { return l4Val; } set { l4Val = value; } } /// /// AI /// [Description("AI")] [Nullable(true)] [DataLength(20)] public string AiVal { get { return aiVal; } set { aiVal = value; } } /// /// LC /// [Description("LC")] [Nullable(true)] [DataLength(20)] public string LcVal { get { return lcVal; } set { lcVal = value; } } } }