TOrderDetail.java 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class TOrderDetail {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.id
  7. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  8. */
  9. private String id;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.order_no
  12. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  13. */
  14. private Long orderNo;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_id
  17. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  18. */
  19. private String commodityId;
  20. /**
  21. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_name
  22. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  23. */
  24. private String commodityName;
  25. /**
  26. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_quantity
  27. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  28. */
  29. private Integer commodityQuantity;
  30. /**
  31. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_price
  32. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  33. */
  34. private BigDecimal commodityPrice;
  35. /**
  36. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_type
  37. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  38. */
  39. private Integer commodityType;
  40. /**
  41. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.commodity_mode
  42. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  43. */
  44. private String commodityMode;
  45. /**
  46. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.discount_price
  47. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  48. */
  49. private BigDecimal discountPrice;
  50. /**
  51. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_detail.create_time
  52. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  53. */
  54. private Date createTime;
  55. /**
  56. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.id
  57. * @return the value of t_order_detail.id
  58. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  59. */
  60. public String getId() {
  61. return id;
  62. }
  63. /**
  64. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.id
  65. * @param id the value for t_order_detail.id
  66. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  67. */
  68. public void setId(String id) {
  69. this.id = id;
  70. }
  71. /**
  72. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.order_no
  73. * @return the value of t_order_detail.order_no
  74. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  75. */
  76. public Long getOrderNo() {
  77. return orderNo;
  78. }
  79. /**
  80. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.order_no
  81. * @param orderNo the value for t_order_detail.order_no
  82. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  83. */
  84. public void setOrderNo(Long orderNo) {
  85. this.orderNo = orderNo;
  86. }
  87. /**
  88. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_id
  89. * @return the value of t_order_detail.commodity_id
  90. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  91. */
  92. public String getCommodityId() {
  93. return commodityId;
  94. }
  95. /**
  96. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_id
  97. * @param commodityId the value for t_order_detail.commodity_id
  98. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  99. */
  100. public void setCommodityId(String commodityId) {
  101. this.commodityId = commodityId;
  102. }
  103. /**
  104. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_name
  105. * @return the value of t_order_detail.commodity_name
  106. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  107. */
  108. public String getCommodityName() {
  109. return commodityName;
  110. }
  111. /**
  112. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_name
  113. * @param commodityName the value for t_order_detail.commodity_name
  114. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  115. */
  116. public void setCommodityName(String commodityName) {
  117. this.commodityName = commodityName;
  118. }
  119. /**
  120. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_quantity
  121. * @return the value of t_order_detail.commodity_quantity
  122. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  123. */
  124. public Integer getCommodityQuantity() {
  125. return commodityQuantity;
  126. }
  127. /**
  128. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_quantity
  129. * @param commodityQuantity the value for t_order_detail.commodity_quantity
  130. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  131. */
  132. public void setCommodityQuantity(Integer commodityQuantity) {
  133. this.commodityQuantity = commodityQuantity;
  134. }
  135. /**
  136. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_price
  137. * @return the value of t_order_detail.commodity_price
  138. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  139. */
  140. public BigDecimal getCommodityPrice() {
  141. return commodityPrice;
  142. }
  143. /**
  144. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_price
  145. * @param commodityPrice the value for t_order_detail.commodity_price
  146. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  147. */
  148. public void setCommodityPrice(BigDecimal commodityPrice) {
  149. this.commodityPrice = commodityPrice;
  150. }
  151. /**
  152. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_type
  153. * @return the value of t_order_detail.commodity_type
  154. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  155. */
  156. public Integer getCommodityType() {
  157. return commodityType;
  158. }
  159. /**
  160. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_type
  161. * @param commodityType the value for t_order_detail.commodity_type
  162. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  163. */
  164. public void setCommodityType(Integer commodityType) {
  165. this.commodityType = commodityType;
  166. }
  167. /**
  168. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.commodity_mode
  169. * @return the value of t_order_detail.commodity_mode
  170. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  171. */
  172. public String getCommodityMode() {
  173. return commodityMode;
  174. }
  175. /**
  176. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.commodity_mode
  177. * @param commodityMode the value for t_order_detail.commodity_mode
  178. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  179. */
  180. public void setCommodityMode(String commodityMode) {
  181. this.commodityMode = commodityMode;
  182. }
  183. /**
  184. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.discount_price
  185. * @return the value of t_order_detail.discount_price
  186. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  187. */
  188. public BigDecimal getDiscountPrice() {
  189. return discountPrice;
  190. }
  191. /**
  192. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.discount_price
  193. * @param discountPrice the value for t_order_detail.discount_price
  194. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  195. */
  196. public void setDiscountPrice(BigDecimal discountPrice) {
  197. this.discountPrice = discountPrice;
  198. }
  199. /**
  200. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_detail.create_time
  201. * @return the value of t_order_detail.create_time
  202. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  203. */
  204. public Date getCreateTime() {
  205. return createTime;
  206. }
  207. /**
  208. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_detail.create_time
  209. * @param createTime the value for t_order_detail.create_time
  210. * @mbg.generated Wed Jan 10 13:43:11 CST 2018
  211. */
  212. public void setCreateTime(Date createTime) {
  213. this.createTime = createTime;
  214. }
  215. }