PayOrderInfoEntity.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. package com.kmall.admin.entity.compared;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 实体
  7. * 表名 mall_pay_order_info
  8. *
  9. * @author emato
  10. * @email admin@qhdswl.com
  11. * @date 2020-11-26 10:16:58
  12. */
  13. public class PayOrderInfoEntity implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. *
  17. */
  18. private Integer mpoiId;
  19. /**
  20. *
  21. */
  22. private String merchOrderSn;
  23. /**
  24. *
  25. */
  26. private String payStatus;
  27. /**
  28. *
  29. */
  30. private BigDecimal orderAmount;
  31. /**
  32. *
  33. */
  34. private BigDecimal refundAmount;
  35. /**
  36. *
  37. */
  38. private String orderStatus;
  39. /**
  40. *
  41. */
  42. private String payFlag;
  43. /**
  44. *
  45. */
  46. private String payTime;
  47. /**
  48. *
  49. */
  50. private String importTime;
  51. /**
  52. *
  53. */
  54. private String importer;
  55. /**
  56. *
  57. */
  58. private String compared;
  59. /**
  60. *
  61. */
  62. private String comparedTime;
  63. /**
  64. * 设置:
  65. */
  66. public void setMpoiId(Integer mpoiId) {
  67. this.mpoiId = mpoiId;
  68. }
  69. /**
  70. * 获取:
  71. */
  72. public Integer getMpoiId() {
  73. return mpoiId;
  74. }
  75. /**
  76. * 设置:
  77. */
  78. public void setMerchOrderSn(String merchOrderSn) {
  79. this.merchOrderSn = merchOrderSn;
  80. }
  81. /**
  82. * 获取:
  83. */
  84. public String getMerchOrderSn() {
  85. return merchOrderSn;
  86. }
  87. /**
  88. * 设置:
  89. */
  90. public void setPayStatus(String payStatus) {
  91. this.payStatus = payStatus;
  92. }
  93. /**
  94. * 获取:
  95. */
  96. public String getPayStatus() {
  97. return payStatus;
  98. }
  99. /**
  100. * 设置:
  101. */
  102. public void setOrderAmount(BigDecimal orderAmount) {
  103. this.orderAmount = orderAmount;
  104. }
  105. /**
  106. * 获取:
  107. */
  108. public BigDecimal getOrderAmount() {
  109. return orderAmount;
  110. }
  111. /**
  112. * 设置:
  113. */
  114. public void setRefundAmount(BigDecimal refundAmount) {
  115. this.refundAmount = refundAmount;
  116. }
  117. /**
  118. * 获取:
  119. */
  120. public BigDecimal getRefundAmount() {
  121. return refundAmount;
  122. }
  123. /**
  124. * 设置:
  125. */
  126. public void setOrderStatus(String orderStatus) {
  127. this.orderStatus = orderStatus;
  128. }
  129. /**
  130. * 获取:
  131. */
  132. public String getOrderStatus() {
  133. return orderStatus;
  134. }
  135. /**
  136. * 设置:
  137. */
  138. public void setPayFlag(String payFlag) {
  139. this.payFlag = payFlag;
  140. }
  141. /**
  142. * 获取:
  143. */
  144. public String getPayFlag() {
  145. return payFlag;
  146. }
  147. /**
  148. * 设置:
  149. */
  150. public void setPayTime(String payTime) {
  151. this.payTime = payTime;
  152. }
  153. /**
  154. * 获取:
  155. */
  156. public String getPayTime() {
  157. return payTime;
  158. }
  159. /**
  160. * 设置:
  161. */
  162. public void setImportTime(String importTime) {
  163. this.importTime = importTime;
  164. }
  165. /**
  166. * 获取:
  167. */
  168. public String getImportTime() {
  169. return importTime;
  170. }
  171. /**
  172. * 设置:
  173. */
  174. public void setImporter(String importer) {
  175. this.importer = importer;
  176. }
  177. /**
  178. * 获取:
  179. */
  180. public String getImporter() {
  181. return importer;
  182. }
  183. /**
  184. * 设置:
  185. */
  186. public void setCompared(String compared) {
  187. this.compared = compared;
  188. }
  189. /**
  190. * 获取:
  191. */
  192. public String getCompared() {
  193. return compared;
  194. }
  195. /**
  196. * 设置:
  197. */
  198. public void setComparedTime(String comparedTime) {
  199. this.comparedTime = comparedTime;
  200. }
  201. /**
  202. * 获取:
  203. */
  204. public String getComparedTime() {
  205. return comparedTime;
  206. }
  207. }