ScRechargeResponse.java 594 B

12345678910111213141516171819202122232425262728
  1. package com.cyksj.model.response;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. @Getter
  5. @Setter
  6. public class ScRechargeResponse {
  7. private int code;
  8. private String message;
  9. private DataInfo data;
  10. private long timestamp;
  11. private boolean success;
  12. private boolean error;
  13. @Getter
  14. @Setter
  15. public static class DataInfo {
  16. private int productId;
  17. private boolean success;
  18. private int cardId;
  19. private boolean processing;
  20. private String message;
  21. private int rechargeType;
  22. private String thirdPartyResult;
  23. }
  24. }