|
@@ -4,6 +4,8 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* @Description: 档案信息
|
|
|
* @Author: CaoZixuan
|
|
@@ -23,6 +25,9 @@ public class UserArchivesInfoResult {
|
|
|
@ApiModelProperty("手机号")
|
|
|
private String mobileNumber;
|
|
|
|
|
|
+ @ApiModelProperty(value = "认证角色集合")
|
|
|
+ private List<RoleResult> roleInfoList;
|
|
|
+
|
|
|
public Long getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
@@ -54,4 +59,12 @@ public class UserArchivesInfoResult {
|
|
|
public void setMobileNumber(String mobileNumber) {
|
|
|
this.mobileNumber = mobileNumber;
|
|
|
}
|
|
|
+
|
|
|
+ public List<RoleResult> getRoleInfoList() {
|
|
|
+ return roleInfoList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRoleInfoList(List<RoleResult> roleInfoList) {
|
|
|
+ this.roleInfoList = roleInfoList;
|
|
|
+ }
|
|
|
}
|