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_F所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2021-01-13 /// public class BuyGpCheckResultFEntity { /// /// 检查记录流水号 /// private string checkNo = ""; /// /// 序号 /// private decimal? failSeq = null; /// /// 不合支数 /// private decimal? failNum = null; /// /// 不合原因 /// private string failReason = ""; /// /// 检查记录流水号 /// [Description("检查记录流水号")] [Nullable(false)] [DataLength(20)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] public decimal? FailSeq { get { return failSeq; } set { failSeq = value; } } /// /// 不合支数 /// [Description("不合支数")] [Nullable(true)] [DataLength(22)] public decimal? FailNum { get { return failNum; } set { failNum = value; } } /// /// 不合原因 /// [Description("不合原因")] [Nullable(true)] [DataLength(100)] public string FailReason { get { return failReason; } set { failReason = value; } } public bool Chk { get; set; } } }