IllegalInfoResult.java 591 B

1234567891011121314151617181920212223242526272829
  1. package com.jkcredit.illegal.info.model;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * @description:
  7. * @author: xusonglin
  8. * @create: 2020/9/22 11:40
  9. * @version: V1.0
  10. **/
  11. @Data
  12. public class IllegalInfoResult implements Serializable {
  13. private static final long serialVersionUID = -6237336433468586318L;
  14. private String code;
  15. @JSONField(name = "result1")
  16. private String isEscape;
  17. @JSONField(name = "result2")
  18. private String isPedigree;
  19. @JSONField(name = "result3")
  20. private String isDrugs;
  21. }