MouldHistoryTime.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package com.js.kbt.model;
  2. import java.util.Date;
  3. public class MouldHistoryTime {
  4. /**
  5. * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.history_id
  6. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  7. */
  8. private Long historyId;
  9. /**
  10. * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.seq
  11. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  12. */
  13. private Integer seq;
  14. /**
  15. * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.close_time
  16. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  17. */
  18. private Date closeTime;
  19. /**
  20. * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.open_time
  21. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  22. */
  23. private Date openTime;
  24. /**
  25. * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.time_cost
  26. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  27. */
  28. private Integer timeCost;
  29. /**
  30. * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.history_id
  31. * @return the value of mould_history_time.history_id
  32. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  33. */
  34. public Long getHistoryId() {
  35. return historyId;
  36. }
  37. /**
  38. * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.history_id
  39. * @param historyId the value for mould_history_time.history_id
  40. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  41. */
  42. public void setHistoryId(Long historyId) {
  43. this.historyId = historyId;
  44. }
  45. /**
  46. * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.seq
  47. * @return the value of mould_history_time.seq
  48. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  49. */
  50. public Integer getSeq() {
  51. return seq;
  52. }
  53. /**
  54. * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.seq
  55. * @param seq the value for mould_history_time.seq
  56. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  57. */
  58. public void setSeq(Integer seq) {
  59. this.seq = seq;
  60. }
  61. /**
  62. * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.close_time
  63. * @return the value of mould_history_time.close_time
  64. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  65. */
  66. public Date getCloseTime() {
  67. return closeTime;
  68. }
  69. /**
  70. * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.close_time
  71. * @param closeTime the value for mould_history_time.close_time
  72. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  73. */
  74. public void setCloseTime(Date closeTime) {
  75. this.closeTime = closeTime;
  76. }
  77. /**
  78. * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.open_time
  79. * @return the value of mould_history_time.open_time
  80. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  81. */
  82. public Date getOpenTime() {
  83. return openTime;
  84. }
  85. /**
  86. * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.open_time
  87. * @param openTime the value for mould_history_time.open_time
  88. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  89. */
  90. public void setOpenTime(Date openTime) {
  91. this.openTime = openTime;
  92. }
  93. /**
  94. * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.time_cost
  95. * @return the value of mould_history_time.time_cost
  96. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  97. */
  98. public Integer getTimeCost() {
  99. return timeCost;
  100. }
  101. /**
  102. * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.time_cost
  103. * @param timeCost the value for mould_history_time.time_cost
  104. * @mbg.generated Mon Aug 05 15:38:00 CST 2019
  105. */
  106. public void setTimeCost(Integer timeCost) {
  107. this.timeCost = timeCost;
  108. }
  109. }