Commit 56b172ad authored by Zhang's avatar Zhang

Upload New File

parent 18d1ae95
package com.ces.mybatis.model;
package com.ces.mybatis.model;
public class User {
private String userId;
private String userName;
private String password;
private Context context;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Context getContext() {
return context;
}
public void setContext(Context context) {
this.context = context;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment