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.

WithDrawalOrderInfo.java 407B

12345678910111213141516
  1. package io.renren.dto;
  2. import lombok.Data;
  3. import lombok.EqualsAndHashCode;
  4. @Data
  5. @EqualsAndHashCode
  6. public class WithDrawalOrderInfo {
  7. private String txn_seqno;
  8. private String txn_time;
  9. private Double total_amount;
  10. private Double fee_amount;
  11. private String order_info;
  12. // 交易附言。提现交易附言。单笔金额大于等于5w必须提供
  13. private String postscript;
  14. }