| | |
| | | package com.gkhy.assess.common.domain.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ApiModelProperty(value = "用户昵称",required = true) |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "机构名称") |
| | | private String agentName; |
| | | |
| | | @ApiModelProperty(value = "机构Id") |
| | | private Long agentId; |
| | | |
| | | @ApiModelProperty(value = "审批状态(0暂存,1审核中,2审批通过,3审批驳回,4已作废 默认1)") |
| | | private Integer state; |
| | | |
| | | @ApiModelProperty("用户角色") |
| | | private String role; |
| | | |
| | | @ApiModelProperty("生产的token,接口请求头字段: Authorization") |
| | | private String token; |
| | | |
| | | @ApiModelProperty("用户身份(0代表监管用户,1代表机构用户,2代表专家用户)") |
| | | private Integer identity; |
| | | |
| | | @ApiModelProperty("用户人脸图片地址(app使用),前端访问图片链接格式:http://ip:port/api/文件保存相对路径") |
| | | private String idPhoto; |
| | | } |