parent
8d56591cf5
commit
bda3bfe16e
@ -0,0 +1,7 @@ |
||||
package com.share.help.form; |
||||
|
||||
import com.share.help.entity.UserEntity; |
||||
|
||||
public class UserLoginForm extends UserEntity { |
||||
|
||||
} |
@ -0,0 +1,45 @@ |
||||
package com.share.help.res.account; |
||||
|
||||
import com.share.help.entity.UserEntity; |
||||
|
||||
/** |
||||
* 登陆结果 |
||||
*/ |
||||
public class LoginRes { |
||||
|
||||
public LoginRes(UserEntity userEntity) { |
||||
this.userId=userEntity.getUserId(); |
||||
this.userType=userEntity.getUserType(); |
||||
} |
||||
|
||||
//用户id
|
||||
private String userId; |
||||
|
||||
//用户身份
|
||||
private String userType; |
||||
|
||||
public String getUserId() { |
||||
return userId; |
||||
} |
||||
|
||||
public void setUserId(String userId) { |
||||
this.userId = userId; |
||||
} |
||||
|
||||
public String getUserType() { |
||||
return userType; |
||||
} |
||||
|
||||
public void setUserType(String userType) { |
||||
this.userType = userType; |
||||
} |
||||
|
||||
public enum Res { |
||||
// 登陆成功
|
||||
ok, |
||||
// 账号或密码错误
|
||||
valid_error, |
||||
// 表单不合法,请联系管理员
|
||||
form_error |
||||
} |
||||
} |
Loading…
Reference in new issue