NotifyMsg.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.keao.edu.thirdparty.yqpay;
  2. import java.math.BigDecimal;
  3. /**
  4. * 异步通知具体信息
  5. */
  6. public class NotifyMsg {
  7. private String merMerOrderNo;
  8. private BigDecimal payAmount;
  9. private String orderNo;
  10. private String sellerNo;
  11. private String buyerNo;
  12. private String qyfcustUniqueNo;
  13. private String tradeFee;
  14. private String channelType;
  15. public String getMerMerOrderNo() {
  16. return merMerOrderNo;
  17. }
  18. public void setMerMerOrderNo(String merMerOrderNo) {
  19. this.merMerOrderNo = merMerOrderNo;
  20. }
  21. public BigDecimal getPayAmount() {
  22. return payAmount;
  23. }
  24. public void setPayAmount(BigDecimal payAmount) {
  25. this.payAmount = payAmount;
  26. }
  27. public String getOrderNo() {
  28. return orderNo;
  29. }
  30. public void setOrderNo(String orderNo) {
  31. this.orderNo = orderNo;
  32. }
  33. public String getSellerNo() {
  34. return sellerNo;
  35. }
  36. public void setSellerNo(String sellerNo) {
  37. this.sellerNo = sellerNo;
  38. }
  39. public String getBuyerNo() {
  40. return buyerNo;
  41. }
  42. public void setBuyerNo(String buyerNo) {
  43. this.buyerNo = buyerNo;
  44. }
  45. public String getQyfcustUniqueNo() {
  46. return qyfcustUniqueNo;
  47. }
  48. public void setQyfcustUniqueNo(String qyfcustUniqueNo) {
  49. this.qyfcustUniqueNo = qyfcustUniqueNo;
  50. }
  51. public String getTradeFee() {
  52. return tradeFee;
  53. }
  54. public void setTradeFee(String tradeFee) {
  55. this.tradeFee = tradeFee;
  56. }
  57. public String getChannelType() {
  58. return channelType;
  59. }
  60. public void setChannelType(String channelType) {
  61. this.channelType = channelType;
  62. }
  63. }