IdleContractNo.java 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class IdleContractNo {
  4. /**
  5. *
  6. * This field was generated by MyBatis Generator.
  7. * This field corresponds to the database column idle_contract_no.id
  8. *
  9. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  10. */
  11. private Integer id;
  12. /**
  13. *
  14. * This field was generated by MyBatis Generator.
  15. * This field corresponds to the database column idle_contract_no.abbreviation
  16. *
  17. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  18. */
  19. private String abbreviation;
  20. /**
  21. *
  22. * This field was generated by MyBatis Generator.
  23. * This field corresponds to the database column idle_contract_no.used_order_no
  24. *
  25. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  26. */
  27. private String usedOrderNo;
  28. /**
  29. *
  30. * This field was generated by MyBatis Generator.
  31. * This field corresponds to the database column idle_contract_no.contract_no
  32. *
  33. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  34. */
  35. private String contractNo;
  36. /**
  37. *
  38. * This field was generated by MyBatis Generator.
  39. * This field corresponds to the database column idle_contract_no.aid
  40. *
  41. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  42. */
  43. private String aid;
  44. /**
  45. *
  46. * This field was generated by MyBatis Generator.
  47. * This field corresponds to the database column idle_contract_no.create_time
  48. *
  49. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  50. */
  51. private Date createTime;
  52. /**
  53. * This method was generated by MyBatis Generator.
  54. * This method returns the value of the database column idle_contract_no.id
  55. *
  56. * @return the value of idle_contract_no.id
  57. *
  58. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  59. */
  60. public Integer getId() {
  61. return id;
  62. }
  63. /**
  64. * This method was generated by MyBatis Generator.
  65. * This method sets the value of the database column idle_contract_no.id
  66. *
  67. * @param id the value for idle_contract_no.id
  68. *
  69. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  70. */
  71. public void setId(Integer id) {
  72. this.id = id;
  73. }
  74. /**
  75. * This method was generated by MyBatis Generator.
  76. * This method returns the value of the database column idle_contract_no.abbreviation
  77. *
  78. * @return the value of idle_contract_no.abbreviation
  79. *
  80. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  81. */
  82. public String getAbbreviation() {
  83. return abbreviation;
  84. }
  85. /**
  86. * This method was generated by MyBatis Generator.
  87. * This method sets the value of the database column idle_contract_no.abbreviation
  88. *
  89. * @param abbreviation the value for idle_contract_no.abbreviation
  90. *
  91. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  92. */
  93. public void setAbbreviation(String abbreviation) {
  94. this.abbreviation = abbreviation;
  95. }
  96. /**
  97. * This method was generated by MyBatis Generator.
  98. * This method returns the value of the database column idle_contract_no.used_order_no
  99. *
  100. * @return the value of idle_contract_no.used_order_no
  101. *
  102. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  103. */
  104. public String getUsedOrderNo() {
  105. return usedOrderNo;
  106. }
  107. /**
  108. * This method was generated by MyBatis Generator.
  109. * This method sets the value of the database column idle_contract_no.used_order_no
  110. *
  111. * @param usedOrderNo the value for idle_contract_no.used_order_no
  112. *
  113. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  114. */
  115. public void setUsedOrderNo(String usedOrderNo) {
  116. this.usedOrderNo = usedOrderNo;
  117. }
  118. /**
  119. * This method was generated by MyBatis Generator.
  120. * This method returns the value of the database column idle_contract_no.contract_no
  121. *
  122. * @return the value of idle_contract_no.contract_no
  123. *
  124. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  125. */
  126. public String getContractNo() {
  127. return contractNo;
  128. }
  129. /**
  130. * This method was generated by MyBatis Generator.
  131. * This method sets the value of the database column idle_contract_no.contract_no
  132. *
  133. * @param contractNo the value for idle_contract_no.contract_no
  134. *
  135. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  136. */
  137. public void setContractNo(String contractNo) {
  138. this.contractNo = contractNo;
  139. }
  140. /**
  141. * This method was generated by MyBatis Generator.
  142. * This method returns the value of the database column idle_contract_no.aid
  143. *
  144. * @return the value of idle_contract_no.aid
  145. *
  146. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  147. */
  148. public String getAid() {
  149. return aid;
  150. }
  151. /**
  152. * This method was generated by MyBatis Generator.
  153. * This method sets the value of the database column idle_contract_no.aid
  154. *
  155. * @param aid the value for idle_contract_no.aid
  156. *
  157. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  158. */
  159. public void setAid(String aid) {
  160. this.aid = aid;
  161. }
  162. /**
  163. * This method was generated by MyBatis Generator.
  164. * This method returns the value of the database column idle_contract_no.create_time
  165. *
  166. * @return the value of idle_contract_no.create_time
  167. *
  168. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  169. */
  170. public Date getCreateTime() {
  171. return createTime;
  172. }
  173. /**
  174. * This method was generated by MyBatis Generator.
  175. * This method sets the value of the database column idle_contract_no.create_time
  176. *
  177. * @param createTime the value for idle_contract_no.create_time
  178. *
  179. * @mbg.generated Mon Sep 30 16:05:15 CST 2019
  180. */
  181. public void setCreateTime(Date createTime) {
  182. this.createTime = createTime;
  183. }
  184. }