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.

AcctserialResult.java 544B

123456789101112131415161718192021222324
  1. package io.renren.dto.temp;
  2. import java.util.List;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. /**
  6. * 资金流水详情列表查询 响应参数
  7. */
  8. @Data
  9. @EqualsAndHashCode
  10. public class AcctserialResult {
  11. private String ret_code;
  12. private String ret_msg;
  13. private String oid_partner;
  14. private String user_id;
  15. private String page_no;
  16. private String total_out_amt;
  17. private String total_in_amt;
  18. private String total_num;
  19. private String total_page;
  20. private List<AcctserialAcctbal> acctbal_list;
  21. }