📄 user.java
字号:
/*
* @(#)Storage.java Aug 2, 2007
* Copyright 2007 ThinkJ organization, Inc. All rights reserved
*/
package com.qrsx.asset.model;
/**
* 用户 实体对象
* Author : 王希涛<br>
* Company : 青软实训<br>
* Version : 1.0<br>
* Date : Aug 1, 2007<br>
*/
public class User {
//用户登陆成功标示
public final static String CURRENT_USER = "CURRENT_USER";
private Integer id; //主键
private String name; //用户名称
private String loginName; //用户名称
private String password; //密码
private String sex; //性别
private Integer age; //年龄
private String address; //住址
private String postcard; //邮编
private String telephone; //电话
/**
* @return the loginName
*/
public String getLoginName() {
return loginName;
}
/**
* @param loginName the loginName to set
*/
public void setLoginName(String loginName) {
this.loginName = loginName;
}
/**
* @return the address
*/
public String getAddress() {
return address;
}
/**
* @param address the address to set
*/
public void setAddress(String address) {
this.address = address;
}
/**
* @return the age
*/
public Integer getAge() {
return age;
}
/**
* @param age the age to set
*/
public void setAge(Integer age) {
this.age = age;
}
/**
* @return the id
*/
public Integer getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the password
*/
public String getPassword() {
return password;
}
/**
* @param password the password to set
*/
public void setPassword(String password) {
this.password = password;
}
/**
* @return the postcard
*/
public String getPostcard() {
return postcard;
}
/**
* @param postcard the postcard to set
*/
public void setPostcard(String postcard) {
this.postcard = postcard;
}
/**
* @return the sex
*/
public String getSex() {
return sex;
}
/**
* @param sex the sex to set
*/
public void setSex(String sex) {
this.sex = sex;
}
/**
* @return the telephone
*/
public String getTelephone() {
return telephone;
}
/**
* @param telephone the telephone to set
*/
public void setTelephone(String telephone) {
this.telephone = telephone;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -