|
@ -46,6 +46,7 @@ public class Professor implements CreateTimeSupported, ModifyTimeSupported{
|
46
|
46
|
private Integer authentication;
|
47
|
47
|
private Integer authType;
|
48
|
48
|
private Integer authStatus;
|
|
49
|
private Integer authStatusExpert;
|
49
|
50
|
private String phone;
|
50
|
51
|
private String email;
|
51
|
52
|
private Integer sortFirst;
|
|
@ -255,6 +256,15 @@ public class Professor implements CreateTimeSupported, ModifyTimeSupported{
|
255
|
256
|
public void setAuthStatus(Integer authStatus) {
|
256
|
257
|
this.authStatus = authStatus;
|
257
|
258
|
}
|
|
259
|
|
|
260
|
@Column(handlerClass=WIntHandler.class,dbType="INT",insertable=false,nullable=true,renewable=false,queryable=true)
|
|
261
|
public Integer getAuthStatusExpert() {
|
|
262
|
return authStatusExpert;
|
|
263
|
}
|
|
264
|
|
|
265
|
public void setAuthStatusExpert(Integer authStatusExpert) {
|
|
266
|
this.authStatusExpert = authStatusExpert;
|
|
267
|
}
|
258
|
268
|
|
259
|
269
|
@Column(value=DE.String_de,dbType="VARCHAR(20)")
|
260
|
270
|
public String getPhone() {
|