| 12345678910111213141516171819202122232425262728 |
- package com.cyksj.model.response;
- import lombok.Getter;
- import lombok.Setter;
- @Getter
- @Setter
- public class ScRechargeResponse {
- private int code;
- private String message;
- private DataInfo data;
- private long timestamp;
- private boolean success;
- private boolean error;
- @Getter
- @Setter
- public static class DataInfo {
- private int productId;
- private boolean success;
- private int cardId;
- private boolean processing;
- private String message;
- private int rechargeType;
- private String thirdPartyResult;
- }
- }
|