You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213141516 |
- package io.renren.dto;
-
- import lombok.Data;
- import lombok.EqualsAndHashCode;
-
- @Data
- @EqualsAndHashCode
- public class WithDrawalOrderInfo {
- private String txn_seqno;
- private String txn_time;
- private Double total_amount;
- private Double fee_amount;
- private String order_info;
- // 交易附言。提现交易附言。单笔金额大于等于5w必须提供
- private String postscript;
- }
|