DecodeThreeElementRequestObject.java 864 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package info.aspirecn.iov.sjjh.shupplier10000005.vo;
  2. import lombok.Data;
  3. import lombok.ToString;
  4. /**
  5. * @description:
  6. * @author: xusonglin
  7. * @create: 2019/9/29 15:04
  8. * @version: V1.0
  9. **/
  10. @Data
  11. @ToString
  12. public class DecodeThreeElementRequestObject{
  13. /**接口名*/
  14. private String api;
  15. /**appkey*/
  16. private String appKey;
  17. /**密钥*/
  18. private String appSecret;
  19. /**被查询人对象*/
  20. private DecodeThreeElementRequestData data;
  21. @Data
  22. @ToString(callSuper = true, includeFieldNames = true)
  23. public static class DecodeThreeElementRequestData {
  24. /**姓名*/
  25. private String name;
  26. /**身份证号*/
  27. private String id_number;
  28. /**手机号*/
  29. private String mobile;
  30. /**加密方式*/
  31. private String encrypt;
  32. /**sign*/
  33. private String sign;
  34. }
  35. }