📄 userinfo.java~1~
字号:
package netservice.vo;
public class UserInfo {
private String userId; //客户id
private String userType;//客户类型(0或1)对应客户类型表
private String userName;//客户姓名
private String userAddress;//客户地址
private String userTel;//客户电话(可以为空)
private String userMobile;//客户手机号(可以为空)
private String userBegintime;//客户开机时间 (在数据库中存放的是日期型,8位)
private String userEndtime;//客户停机时间 (在数据库中存放的是日期型,8位)
private String userMemo;//备注
private String userStatus;//客户状态,手动输入,
private String userAccounttype;//客户账户类型(0,1,2或3)对应账户类型表
private String waiterId;//前台人员编号
public UserInfo() {
}
public UserInfo(String userId,String userType,String userName,String userAddress,
String userTel,String userMobile,String userBegintime,
String userEndtime,String userMemo,String userStatus,String userAccounttype,
String waiterId){
this.userId=userId;
this.userType=userType;
this.userName=userName;
this.userAddress=userAddress;
this.userTel=userTel;
this.userMobile=userMobile;
this.userBegintime=userBegintime;
this.userEndtime=userEndtime;
this.userMemo=userMemo;
this.userStatus=userStatus;
this.userAccounttype=userAccounttype;
this.waiterId=waiterId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public void setUserType(String userType) {
this.userType = userType;
}
public void setUserName(String userName) {
this.userName = userName;
}
public void setUserAddress(String userAddress) {
this.userAddress = userAddress;
}
public void setUserTel(String userTel) {
this.userTel = userTel;
}
public void setUserMobile(String userMobile) {
this.userMobile = userMobile;
}
public void setUserBegintime(String userBegintime) {
this.userBegintime = userBegintime;
}
public void setUserEndtime(String userEndtime) {
this.userEndtime = userEndtime;
}
public void setUserMemo(String userMemo) {
this.userMemo = userMemo;
}
public void setUserStatus(String userStatus) {
this.userStatus = userStatus;
}
public void setUserAccounttype(String userAccounttype) {
this.userAccounttype = userAccounttype;
}
public void setWaiterId(String waiterId) {
this.waiterId = waiterId;
}
public String getUserId() {
return userId;
}
public String getUserType() {
return userType;
}
public String getUserName() {
return userName;
}
public String getUserAddress() {
return userAddress;
}
public String getUserTel() {
return userTel;
}
public String getUserMobile() {
return userMobile;
}
public String getUserBegintime() {
return userBegintime;
}
public String getUserEndtime() {
return userEndtime;
}
public String getUserMemo() {
return userMemo;
}
public String getUserStatus() {
return userStatus;
}
public String getUserAccounttype() {
return userAccounttype;
}
public String getWaiterId() {
return waiterId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -