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