companycard.java

来自「oa办公系统」· Java 代码 · 共 68 行

JAVA
68
字号
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 + =
减小字号Ctrl + -
显示快捷键?