BuyGpCheckResultFEntity.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.LgResMgt.Mcms.entity
  8. {
  9. /// <summary>
  10. /// 数据库表BUY_GP_CHECK_RESULT_F所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:朱少波 时间:2021-01-13
  12. /// </summary>
  13. public class BuyGpCheckResultFEntity
  14. {
  15. /// <summary>
  16. /// 检查记录流水号
  17. /// </summary>
  18. private string checkNo = "";
  19. /// <summary>
  20. /// 序号
  21. /// </summary>
  22. private decimal? failSeq = null;
  23. /// <summary>
  24. /// 不合支数
  25. /// </summary>
  26. private decimal? failNum = null;
  27. /// <summary>
  28. /// 不合原因
  29. /// </summary>
  30. private string failReason = "";
  31. /// <summary>
  32. /// 检查记录流水号
  33. /// </summary>
  34. [Description("检查记录流水号")]
  35. [Nullable(false)]
  36. [DataLength(20)]
  37. public string CheckNo
  38. {
  39. get { return checkNo; }
  40. set { checkNo = value; }
  41. }
  42. /// <summary>
  43. /// 序号
  44. /// </summary>
  45. [Description("序号")]
  46. [Nullable(false)]
  47. [DataLength(22)]
  48. public decimal? FailSeq
  49. {
  50. get { return failSeq; }
  51. set { failSeq = value; }
  52. }
  53. /// <summary>
  54. /// 不合支数
  55. /// </summary>
  56. [Description("不合支数")]
  57. [Nullable(true)]
  58. [DataLength(22)]
  59. public decimal? FailNum
  60. {
  61. get { return failNum; }
  62. set { failNum = value; }
  63. }
  64. /// <summary>
  65. /// 不合原因
  66. /// </summary>
  67. [Description("不合原因")]
  68. [Nullable(true)]
  69. [DataLength(100)]
  70. public string FailReason
  71. {
  72. get { return failReason; }
  73. set { failReason = value; }
  74. }
  75. public bool Chk { get; set; }
  76. }
  77. }