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.

AcctserialDetailParams.java 340B

1234567891011121314151617
  1. package io.renren.vo;
  2. import lombok.Data;
  3. import lombok.EqualsAndHashCode;
  4. /**
  5. * 资金流水详情查询 请求参数
  6. */
  7. @Data
  8. @EqualsAndHashCode
  9. public class AcctserialDetailParams {
  10. private String timestamp;
  11. private String oid_partner;
  12. private String user_id;
  13. private String user_type;
  14. private String jno_acct;
  15. }