YW_Apply_CarLock.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MES.Production.Entity
  7. {
  8. public class YW_Apply_CarLock
  9. {
  10. public YW_Apply_CarLock()
  11. { }
  12. #region Model
  13. private Guid _id;
  14. private string _carid;
  15. private string _reason;
  16. private string _apply_name;
  17. private int? _apply_type;
  18. private int? _state;
  19. private DateTime? _add_time;
  20. private string _add_name;
  21. /// <summary>
  22. ///
  23. /// </summary>
  24. public Guid ID
  25. {
  26. set { _id = value; }
  27. get { return _id; }
  28. }
  29. /// <summary>
  30. ///
  31. /// </summary>
  32. public string carid
  33. {
  34. set { _carid = value; }
  35. get { return _carid; }
  36. }
  37. /// <summary>
  38. ///
  39. /// </summary>
  40. public string reason
  41. {
  42. set { _reason = value; }
  43. get { return _reason; }
  44. }
  45. /// <summary>
  46. ///
  47. /// </summary>
  48. public string apply_name
  49. {
  50. set { _apply_name = value; }
  51. get { return _apply_name; }
  52. }
  53. /// <summary>
  54. ///
  55. /// </summary>
  56. public int? apply_type
  57. {
  58. set { _apply_type = value; }
  59. get { return _apply_type; }
  60. }
  61. /// <summary>
  62. ///
  63. /// </summary>
  64. public int? state
  65. {
  66. set { _state = value; }
  67. get { return _state; }
  68. }
  69. /// <summary>
  70. ///
  71. /// </summary>
  72. public DateTime? add_time
  73. {
  74. set { _add_time = value; }
  75. get { return _add_time; }
  76. }
  77. /// <summary>
  78. ///
  79. /// </summary>
  80. public string add_name
  81. {
  82. set { _add_name = value; }
  83. get { return _add_name; }
  84. }
  85. /// <summary>
  86. ///
  87. /// </summary>
  88. public DateTime? lock_time
  89. {
  90. get; set;
  91. }
  92. #endregion Model
  93. }
  94. }