AdminDTO.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.yx.face.model.dto;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. /**
  6. * @description: 管理人员信息表(Admin)DTO <br>
  7. * @author: PWB <br>
  8. * @since: 1.0 <br>
  9. * @date: 2021-06-04 14:25:44 <br>
  10. */
  11. @ApiModel("管理人员信息表DTO model")
  12. @Data
  13. public class AdminDTO {
  14. @ApiModelProperty(value = "管理人员表主键id")
  15. private Integer adminId;
  16. @ApiModelProperty(value = "呢称")
  17. private String name;
  18. @ApiModelProperty(value = "账号")
  19. private String username;
  20. @ApiModelProperty(value = "密码")
  21. private String password;
  22. @ApiModelProperty(value = "头像路径")
  23. private String avatar;
  24. @ApiModelProperty(value = "身份证号")
  25. private String idNumber;
  26. @ApiModelProperty(value = "管理员联系电话")
  27. private String phone;
  28. @ApiModelProperty(value = "管理员邮箱")
  29. private String email;
  30. @ApiModelProperty(value = "女-0 | 男- 1| 未选中-2")
  31. private Byte gender;
  32. @ApiModelProperty(value = "管理员类型 1.管理员 2.省级总账号 3.省级 4.市级 5.区级")
  33. private Byte type;
  34. @ApiModelProperty(value = "省份地址编码")
  35. private Integer provinceId;
  36. @ApiModelProperty(value = "城市地址编码")
  37. private Integer cityId;
  38. @ApiModelProperty(value = "县区地址编码")
  39. private Integer areaId;
  40. @ApiModelProperty(value = "街道编码")
  41. private Integer streetId;
  42. @ApiModelProperty(value = "详细地址")
  43. private String address;
  44. @ApiModelProperty(value = "派出所编码")
  45. private String policeStationCode;
  46. @ApiModelProperty(value = "派出所名称")
  47. private String policeStationName;
  48. @ApiModelProperty(value = "导出权限 1.可以 2.不可以")
  49. private Integer isOut;
  50. @ApiModelProperty(value = "所属部门id")
  51. private Integer tagId;
  52. @ApiModelProperty(value = "是否脱敏重要信息 1.脱敏 2.不脱敏")
  53. private Integer isHideImportant;
  54. @ApiModelProperty(value = "是否开启布控 1.开启 2.不开启 默认2")
  55. private Integer isControlEarlyWarning;
  56. }