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.

ValidationSmsResult.java 472B

123456789101112131415161718192021
  1. package io.renren.dto.temp;
  2. import lombok.Data;
  3. import lombok.EqualsAndHashCode;
  4. /**
  5. * 交易二次短信验证 响应参数
  6. */
  7. @Data
  8. @EqualsAndHashCode
  9. public class ValidationSmsResult {
  10. private String ret_code;
  11. private String ret_msg;
  12. private String oid_partner;
  13. private String user_id;
  14. private String txn_seqno;
  15. private Double total_amount;
  16. private String accp_txno;
  17. private String accounting_date;
  18. private String finish_time;
  19. }