|
|
@@ -83,7 +83,7 @@ public class UserView implements Serializable {
|
|
|
/**
|
|
|
* 有密保
|
|
|
*/
|
|
|
- private boolean hasQuestion;
|
|
|
+ private Boolean hasQuestion;
|
|
|
|
|
|
/**
|
|
|
* 用户身份认证状态
|
|
|
@@ -219,11 +219,11 @@ public class UserView implements Serializable {
|
|
|
this.passwordLevel = passwordLevel;
|
|
|
}
|
|
|
|
|
|
- public boolean isHasQuestion() {
|
|
|
+ public Boolean getHasQuestion() {
|
|
|
return hasQuestion;
|
|
|
}
|
|
|
|
|
|
- public void setHasQuestion(boolean hasQuestion) {
|
|
|
+ public void setHasQuestion(Boolean hasQuestion) {
|
|
|
this.hasQuestion = hasQuestion;
|
|
|
}
|
|
|
|