|
@@ -59,9 +59,9 @@ public class UserAuthentication implements Serializable {
|
|
|
private String position;
|
|
|
|
|
|
/**
|
|
|
- * 是否通过认证 N:未通过,Y:已通过
|
|
|
+ * 是否通过认证 0:未通过,1:已通过
|
|
|
*/
|
|
|
- private String isReject;
|
|
|
+ private Integer isReject;
|
|
|
|
|
|
/**
|
|
|
* 未通过类型
|
|
@@ -148,11 +148,11 @@ public class UserAuthentication implements Serializable {
|
|
|
this.position = position;
|
|
|
}
|
|
|
|
|
|
- public String getIsReject() {
|
|
|
+ public Integer getIsReject() {
|
|
|
return isReject;
|
|
|
}
|
|
|
|
|
|
- public void setIsReject(String isReject) {
|
|
|
+ public void setIsReject(Integer isReject) {
|
|
|
this.isReject = isReject;
|
|
|
}
|
|
|
|