📄 companycard.java
字号:
package cn.jx.ecjtu.oa.ps.pojo;
/**
*
* @todo:Company pojo
* @author 陈智
* @version $Revision: 1.3 $
* @since 1.0
*/
public class CompanyCard {
private int user_id;
private int company_id;
private String name;
private String address;
private String phone;
private String post;
public CompanyCard() {
// TODO Auto-generated constructor stub
}
public CompanyCard(int user_id, int company_id, String name, String address, String phone, String post) {
super();
this.user_id = user_id;
this.company_id = company_id;
this.name = name;
this.address = address;
this.phone = phone;
this.post = post;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public int getCompany_id() {
return company_id;
}
public void setCompany_id(int company_id) {
this.company_id = company_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getPost() {
return post;
}
public void setPost(String post) {
this.post = post;
}
public int getUser_id() {
return user_id;
}
public void setUser_id(int user_id) {
this.user_id = user_id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -