StationOilAdjustPrice.java 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. package com.platform.yijia.pojo;
  2. import java.util.Date;
  3. public class StationOilAdjustPrice {
  4. /**
  5. *
  6. * This field was generated by MyBatis Generator.
  7. * This field corresponds to the database column station_oil_adjust_price.adjust_price_id
  8. *
  9. * @mbg.generated
  10. */
  11. private Integer adjustPriceId;
  12. /**
  13. *
  14. * This field was generated by MyBatis Generator.
  15. * This field corresponds to the database column station_oil_adjust_price.oil_name
  16. *
  17. * @mbg.generated
  18. */
  19. private String oilName;
  20. /**
  21. *
  22. * This field was generated by MyBatis Generator.
  23. * This field corresponds to the database column station_oil_adjust_price.oil_adjust_price
  24. *
  25. * @mbg.generated
  26. */
  27. private String oilAdjustPrice;
  28. /**
  29. *
  30. * This field was generated by MyBatis Generator.
  31. * This field corresponds to the database column station_oil_adjust_price.take_effect_status
  32. *
  33. * @mbg.generated
  34. */
  35. private String takeEffectStatus;
  36. /**
  37. *
  38. * This field was generated by MyBatis Generator.
  39. * This field corresponds to the database column station_oil_adjust_price.take_effect_date
  40. *
  41. * @mbg.generated
  42. */
  43. private Date takeEffectDate;
  44. /**
  45. *
  46. * This field was generated by MyBatis Generator.
  47. * This field corresponds to the database column station_oil_adjust_price.adjust_date
  48. *
  49. * @mbg.generated
  50. */
  51. private Date adjustDate;
  52. /**
  53. *
  54. * This field was generated by MyBatis Generator.
  55. * This field corresponds to the database column station_oil_adjust_price.station_id
  56. *
  57. * @mbg.generated
  58. */
  59. private Integer stationId;
  60. /**
  61. *
  62. * This field was generated by MyBatis Generator.
  63. * This field corresponds to the database column station_oil_adjust_price.station_name
  64. *
  65. * @mbg.generated
  66. */
  67. private String stationName;
  68. /**
  69. *
  70. * This field was generated by MyBatis Generator.
  71. * This field corresponds to the database column station_oil_adjust_price.operator
  72. *
  73. * @mbg.generated
  74. */
  75. private String operator;
  76. /**
  77. * This method was generated by MyBatis Generator.
  78. * This method returns the value of the database column station_oil_adjust_price.adjust_price_id
  79. *
  80. * @return the value of station_oil_adjust_price.adjust_price_id
  81. *
  82. * @mbg.generated
  83. */
  84. public Integer getAdjustPriceId() {
  85. return adjustPriceId;
  86. }
  87. /**
  88. * This method was generated by MyBatis Generator.
  89. * This method sets the value of the database column station_oil_adjust_price.adjust_price_id
  90. *
  91. * @param adjustPriceId the value for station_oil_adjust_price.adjust_price_id
  92. *
  93. * @mbg.generated
  94. */
  95. public void setAdjustPriceId(Integer adjustPriceId) {
  96. this.adjustPriceId = adjustPriceId;
  97. }
  98. /**
  99. * This method was generated by MyBatis Generator.
  100. * This method returns the value of the database column station_oil_adjust_price.oil_name
  101. *
  102. * @return the value of station_oil_adjust_price.oil_name
  103. *
  104. * @mbg.generated
  105. */
  106. public String getOilName() {
  107. return oilName;
  108. }
  109. /**
  110. * This method was generated by MyBatis Generator.
  111. * This method sets the value of the database column station_oil_adjust_price.oil_name
  112. *
  113. * @param oilName the value for station_oil_adjust_price.oil_name
  114. *
  115. * @mbg.generated
  116. */
  117. public void setOilName(String oilName) {
  118. this.oilName = oilName == null ? null : oilName.trim();
  119. }
  120. /**
  121. * This method was generated by MyBatis Generator.
  122. * This method returns the value of the database column station_oil_adjust_price.oil_adjust_price
  123. *
  124. * @return the value of station_oil_adjust_price.oil_adjust_price
  125. *
  126. * @mbg.generated
  127. */
  128. public String getOilAdjustPrice() {
  129. return oilAdjustPrice;
  130. }
  131. /**
  132. * This method was generated by MyBatis Generator.
  133. * This method sets the value of the database column station_oil_adjust_price.oil_adjust_price
  134. *
  135. * @param oilAdjustPrice the value for station_oil_adjust_price.oil_adjust_price
  136. *
  137. * @mbg.generated
  138. */
  139. public void setOilAdjustPrice(String oilAdjustPrice) {
  140. this.oilAdjustPrice = oilAdjustPrice == null ? null : oilAdjustPrice.trim();
  141. }
  142. /**
  143. * This method was generated by MyBatis Generator.
  144. * This method returns the value of the database column station_oil_adjust_price.take_effect_status
  145. *
  146. * @return the value of station_oil_adjust_price.take_effect_status
  147. *
  148. * @mbg.generated
  149. */
  150. public String getTakeEffectStatus() {
  151. return takeEffectStatus;
  152. }
  153. /**
  154. * This method was generated by MyBatis Generator.
  155. * This method sets the value of the database column station_oil_adjust_price.take_effect_status
  156. *
  157. * @param takeEffectStatus the value for station_oil_adjust_price.take_effect_status
  158. *
  159. * @mbg.generated
  160. */
  161. public void setTakeEffectStatus(String takeEffectStatus) {
  162. this.takeEffectStatus = takeEffectStatus == null ? null : takeEffectStatus.trim();
  163. }
  164. /**
  165. * This method was generated by MyBatis Generator.
  166. * This method returns the value of the database column station_oil_adjust_price.take_effect_date
  167. *
  168. * @return the value of station_oil_adjust_price.take_effect_date
  169. *
  170. * @mbg.generated
  171. */
  172. public Date getTakeEffectDate() {
  173. return takeEffectDate;
  174. }
  175. /**
  176. * This method was generated by MyBatis Generator.
  177. * This method sets the value of the database column station_oil_adjust_price.take_effect_date
  178. *
  179. * @param takeEffectDate the value for station_oil_adjust_price.take_effect_date
  180. *
  181. * @mbg.generated
  182. */
  183. public void setTakeEffectDate(Date takeEffectDate) {
  184. this.takeEffectDate = takeEffectDate;
  185. }
  186. /**
  187. * This method was generated by MyBatis Generator.
  188. * This method returns the value of the database column station_oil_adjust_price.adjust_date
  189. *
  190. * @return the value of station_oil_adjust_price.adjust_date
  191. *
  192. * @mbg.generated
  193. */
  194. public Date getAdjustDate() {
  195. return adjustDate;
  196. }
  197. /**
  198. * This method was generated by MyBatis Generator.
  199. * This method sets the value of the database column station_oil_adjust_price.adjust_date
  200. *
  201. * @param adjustDate the value for station_oil_adjust_price.adjust_date
  202. *
  203. * @mbg.generated
  204. */
  205. public void setAdjustDate(Date adjustDate) {
  206. this.adjustDate = adjustDate;
  207. }
  208. /**
  209. * This method was generated by MyBatis Generator.
  210. * This method returns the value of the database column station_oil_adjust_price.station_id
  211. *
  212. * @return the value of station_oil_adjust_price.station_id
  213. *
  214. * @mbg.generated
  215. */
  216. public Integer getStationId() {
  217. return stationId;
  218. }
  219. /**
  220. * This method was generated by MyBatis Generator.
  221. * This method sets the value of the database column station_oil_adjust_price.station_id
  222. *
  223. * @param stationId the value for station_oil_adjust_price.station_id
  224. *
  225. * @mbg.generated
  226. */
  227. public void setStationId(Integer stationId) {
  228. this.stationId = stationId;
  229. }
  230. /**
  231. * This method was generated by MyBatis Generator.
  232. * This method returns the value of the database column station_oil_adjust_price.station_name
  233. *
  234. * @return the value of station_oil_adjust_price.station_name
  235. *
  236. * @mbg.generated
  237. */
  238. public String getStationName() {
  239. return stationName;
  240. }
  241. /**
  242. * This method was generated by MyBatis Generator.
  243. * This method sets the value of the database column station_oil_adjust_price.station_name
  244. *
  245. * @param stationName the value for station_oil_adjust_price.station_name
  246. *
  247. * @mbg.generated
  248. */
  249. public void setStationName(String stationName) {
  250. this.stationName = stationName == null ? null : stationName.trim();
  251. }
  252. /**
  253. * This method was generated by MyBatis Generator.
  254. * This method returns the value of the database column station_oil_adjust_price.operator
  255. *
  256. * @return the value of station_oil_adjust_price.operator
  257. *
  258. * @mbg.generated
  259. */
  260. public String getOperator() {
  261. return operator;
  262. }
  263. /**
  264. * This method was generated by MyBatis Generator.
  265. * This method sets the value of the database column station_oil_adjust_price.operator
  266. *
  267. * @param operator the value for station_oil_adjust_price.operator
  268. *
  269. * @mbg.generated
  270. */
  271. public void setOperator(String operator) {
  272. this.operator = operator == null ? null : operator.trim();
  273. }
  274. }