PayResult.java 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. package com.happy.Model.weixin;
  2. import javax.xml.bind.annotation.XmlRootElement;
  3. /**
  4. * 微信支付结果返回
  5. *
  6. * @author QT-666
  7. *
  8. */
  9. @XmlRootElement(name="xml")
  10. public class PayResult {
  11. private String appid;// 微信分配的公众账号ID(企业号corpid即为此appId)
  12. private String attach;//附加数据,在查询API和支付通知中原样返回,可作为自定义参数使用。
  13. private String bank_type;// 银行类型,采用字符串类型的银行标识,银行类型见银行列表
  14. private String fee_type;// 货币类型,符合ISO4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型
  15. private String is_subscribe;// 用户是否关注公众账号,Y-关注,N-未关注,仅在公众账号类型支付有效
  16. private String mch_id;// 微信支付分配的商户号
  17. private String nonce_str;// 随机字符串,不长于32位
  18. private String openid;// 用户在商户appid下的唯一标识
  19. private String out_trade_no;// 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母_-|*@
  20. // ,且在同一个商户号下唯一。
  21. private String result_code;// SUCCESS/FAIL
  22. private String return_code;// 此字段是通信标识,非交易标识,交易是否成功需要查看result_code来判断
  23. private String sign;// 签名,详见签名算法
  24. private String sub_mch_id;//
  25. private String time_end;// 支付完成时间,格式为yyyyMMddHHmmss,如2009年12月25日9点10分10秒表示为20091225091010。其他详见时间规则
  26. private int total_fee;// 订单总金额,单位为分
  27. private String trade_type;// JSAPI、NATIVE、APP
  28. private String transaction_id;// 微信支付订单号
  29. private int cash_fee;// 现金金额
  30. private String device_info; //微信支付分配的终端设备号,
  31. private String sign_type;//签名类型,目前支持HMAC-SHA256和MD5,默认为MD5
  32. private String settlement_total_fee ;//应结订单金额=订单金额-非充值代金券金额,应结订单金额<=订单金额。
  33. private String cash_fee_type;//货币类型,符合ISO4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型
  34. private String coupon_fee;//代金券金额<=订单金额,订单金额-代金券金额=现金支付金额,详见支付金额
  35. private String coupon_count;//代金券使用数量
  36. private String coupon_type_$n;// CASH--充值代金券 NO_CASH---非充值代金券 仅在使用了免充值代金券时有返回(取值:CASH、NO_CASH)。$n为下标,从0开始编号,举例:coupon_type_0
  37. private String coupon_id_$n;//代金券ID,$n为下标,从0开始编号
  38. private String coupon_fee_$n;//单个代金券支付金额,$n为下标,从0开始编号
  39. public String getDevice_info() {
  40. return device_info;
  41. }
  42. public void setDevice_info(String device_info) {
  43. this.device_info = device_info;
  44. }
  45. public String getSign_type() {
  46. return sign_type;
  47. }
  48. public void setSign_type(String sign_type) {
  49. this.sign_type = sign_type;
  50. }
  51. public String getSettlement_total_fee() {
  52. return settlement_total_fee;
  53. }
  54. public void setSettlement_total_fee(String settlement_total_fee) {
  55. this.settlement_total_fee = settlement_total_fee;
  56. }
  57. public String getCash_fee_type() {
  58. return cash_fee_type;
  59. }
  60. public void setCash_fee_type(String cash_fee_type) {
  61. this.cash_fee_type = cash_fee_type;
  62. }
  63. public String getCoupon_fee() {
  64. return coupon_fee;
  65. }
  66. public void setCoupon_fee(String coupon_fee) {
  67. this.coupon_fee = coupon_fee;
  68. }
  69. public String getCoupon_count() {
  70. return coupon_count;
  71. }
  72. public void setCoupon_count(String coupon_count) {
  73. this.coupon_count = coupon_count;
  74. }
  75. public String getCoupon_type_$n() {
  76. return coupon_type_$n;
  77. }
  78. public void setCoupon_type_$n(String coupon_type_$n) {
  79. this.coupon_type_$n = coupon_type_$n;
  80. }
  81. public String getCoupon_id_$n() {
  82. return coupon_id_$n;
  83. }
  84. public void setCoupon_id_$n(String coupon_id_$n) {
  85. this.coupon_id_$n = coupon_id_$n;
  86. }
  87. public String getCoupon_fee_$n() {
  88. return coupon_fee_$n;
  89. }
  90. public void setCoupon_fee_$n(String coupon_fee_$n) {
  91. this.coupon_fee_$n = coupon_fee_$n;
  92. }
  93. public String getAppid() {
  94. return appid;
  95. }
  96. public void setAppid(String appid) {
  97. this.appid = appid;
  98. }
  99. public String getAttach() {
  100. return attach;
  101. }
  102. public void setAttach(String attach) {
  103. this.attach = attach;
  104. }
  105. public String getBank_type() {
  106. return bank_type;
  107. }
  108. public void setBank_type(String bank_type) {
  109. this.bank_type = bank_type;
  110. }
  111. public String getFee_type() {
  112. return fee_type;
  113. }
  114. public void setFee_type(String fee_type) {
  115. this.fee_type = fee_type;
  116. }
  117. public String getIs_subscribe() {
  118. return is_subscribe;
  119. }
  120. public void setIs_subscribe(String is_subscribe) {
  121. this.is_subscribe = is_subscribe;
  122. }
  123. public String getMch_id() {
  124. return mch_id;
  125. }
  126. public void setMch_id(String mch_id) {
  127. this.mch_id = mch_id;
  128. }
  129. public String getNonce_str() {
  130. return nonce_str;
  131. }
  132. public void setNonce_str(String nonce_str) {
  133. this.nonce_str = nonce_str;
  134. }
  135. public String getOpenid() {
  136. return openid;
  137. }
  138. public void setOpenid(String openid) {
  139. this.openid = openid;
  140. }
  141. public String getOut_trade_no() {
  142. return out_trade_no;
  143. }
  144. public void setOut_trade_no(String out_trade_no) {
  145. this.out_trade_no = out_trade_no;
  146. }
  147. public String getResult_code() {
  148. return result_code;
  149. }
  150. public void setResult_code(String result_code) {
  151. this.result_code = result_code;
  152. }
  153. public String getReturn_code() {
  154. return return_code;
  155. }
  156. public void setReturn_code(String return_code) {
  157. this.return_code = return_code;
  158. }
  159. public String getSign() {
  160. return sign;
  161. }
  162. public void setSign(String sign) {
  163. this.sign = sign;
  164. }
  165. public String getSub_mch_id() {
  166. return sub_mch_id;
  167. }
  168. public void setSub_mch_id(String sub_mch_id) {
  169. this.sub_mch_id = sub_mch_id;
  170. }
  171. public String getTime_end() {
  172. return time_end;
  173. }
  174. public void setTime_end(String time_end) {
  175. this.time_end = time_end;
  176. }
  177. public int getTotal_fee() {
  178. return total_fee;
  179. }
  180. public void setTotal_fee(int total_fee) {
  181. this.total_fee = total_fee;
  182. }
  183. public String getTrade_type() {
  184. return trade_type;
  185. }
  186. public void setTrade_type(String trade_type) {
  187. this.trade_type = trade_type;
  188. }
  189. public String getTransaction_id() {
  190. return transaction_id;
  191. }
  192. public void setTransaction_id(String transaction_id) {
  193. this.transaction_id = transaction_id;
  194. }
  195. public int getCash_fee() {
  196. return cash_fee;
  197. }
  198. public void setCash_fee(int cash_fee) {
  199. this.cash_fee = cash_fee;
  200. }
  201. @Override
  202. public String toString() {
  203. return "PayResult [appid=" + appid + ", attach=" + attach
  204. + ", bank_type=" + bank_type + ", fee_type=" + fee_type
  205. + ", is_subscribe=" + is_subscribe + ", mch_id=" + mch_id
  206. + ", nonce_str=" + nonce_str + ", openid=" + openid
  207. + ", out_trade_no=" + out_trade_no + ", result_code="
  208. + result_code + ", return_code=" + return_code + ", sign="
  209. + sign + ", sub_mch_id=" + sub_mch_id + ", time_end="
  210. + time_end + ", total_fee=" + total_fee + ", trade_type="
  211. + trade_type + ", transaction_id=" + transaction_id
  212. + ", cash_fee=" + cash_fee ;
  213. }
  214. }