IdentityInfoResponseObject.java 401 B

1234567891011121314151617181920
  1. package info.aspirecn.iov.sjjh.supplier10000044.model;
  2. import lombok.Data;
  3. import lombok.ToString;
  4. /**
  5. * @description:
  6. * @author: xusonglin
  7. * @create: 2020/7/8 13:04
  8. * @version: V1.0
  9. **/
  10. @Data
  11. @ToString
  12. public class IdentityInfoResponseObject {
  13. private String apiVersion;
  14. private String certToken;
  15. private String resStr;
  16. private String retCode;
  17. private String retMessage;
  18. }