using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgResMgt.Mcms.entity { /// /// 数据库表BUY_GP_CHECK_RESULT_D所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2021-01-13 /// public class BuyGpCheckResultDEntity { /// /// 检查记录流水号 /// private string checkNo = ""; /// /// 直径min /// private string dimaterMin = ""; /// /// 直径max /// private string dimaterMax = ""; /// /// 每米弯曲度 /// private string curvaturePer = ""; /// /// 全长弯曲度 /// private string curvatureTotal = ""; /// /// 长度 /// private string length = ""; /// /// 切斜 /// private string cutSquare = ""; /// /// 表面质量 /// private string surfaceQuality = ""; /// /// 标识 /// private string identification = ""; /// /// 备注 /// private string memo = ""; /// /// 椭圆度(含扁平区) /// private string ellipticity=""; /// /// 椭圆度(含扁平区) /// private string Noellipticity = ""; /// /// 检查序号 /// private decimal? checkSeq = null; /// /// 端部圆心100mm平面内高低差 /// private string altitude = null; /// /// 是否S弯 /// private string isSbend = null; /// /// 端面是否平整 /// private string isSmooth = null; /// /// 检查记录流水号 /// [Description("端面是否平整")] [Nullable(false)] [DataLength(20)] public string IsSmooth { get { return isSmooth; } set { isSmooth = value; } } /// /// 检查记录流水号 /// [Description("是否S弯")] [Nullable(false)] [DataLength(20)] public string IsSbend { get { return isSbend; } set { isSbend = value; } } /// /// 检查记录流水号 /// [Description("端部圆心100mm平面内高低差")] [Nullable(false)] [DataLength(20)] public string Altitude { get { return altitude; } set { altitude = value; } } /// /// 检查记录流水号 /// [Description("检查记录流水号")] [Nullable(false)] [DataLength(20)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 直径min /// [Description("直径min")] [Nullable(true)] [DataLength(20)] public string DimaterMin { get { return dimaterMin; } set { dimaterMin = value; } } /// /// 直径max /// [Description("直径max")] [Nullable(true)] [DataLength(20)] public string DimaterMax { get { return dimaterMax; } set { dimaterMax = value; } } /// /// 每米弯曲度 /// [Description("每米弯曲度")] [Nullable(true)] [DataLength(20)] public string CurvaturePer { get { return curvaturePer; } set { curvaturePer = value; } } /// /// 全长弯曲度 /// [Description("全长弯曲度")] [Nullable(true)] [DataLength(20)] public string CurvatureTotal { get { return curvatureTotal; } set { curvatureTotal = value; } } /// /// 长度 /// [Description("长度")] [Nullable(true)] [DataLength(20)] public string Length { get { return length; } set { length = value; } } /// /// 切斜 /// [Description("切斜")] [Nullable(true)] [DataLength(20)] public string CutSquare { get { return cutSquare; } set { cutSquare = value; } } /// /// 表面质量 /// [Description("表面质量")] [Nullable(true)] [DataLength(100)] public string SurfaceQuality { get { return surfaceQuality; } set { surfaceQuality = value; } } /// /// 标识 /// [Description("标识")] [Nullable(true)] [DataLength(100)] public string Identification { get { return identification; } set { identification = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(1000)] public string Memo { get { return memo; } set { memo = value; } } /// /// 检查序号 /// [Description("检查序号")] [Nullable(false)] [DataLength(22)] public decimal? CheckSeq { get { return checkSeq; } set { checkSeq = value; } } /// /// 椭圆度(含扁平区) /// [Description("椭圆度(含扁平区)")] [Nullable(true)] [DataLength(20)] public string Ellipticity { get { return ellipticity; } set { ellipticity = value; } } /// /// 椭圆度(不含扁平区) /// [Description("椭圆度(不含扁平区)")] [Nullable(true)] [DataLength(20)] public string NoEllipticity { get { return Noellipticity; } set { Noellipticity = value; } } } }