readeruser.java

来自「Java协同办公系统。实现公司内部的人事」· Java 代码 · 共 34 行

JAVA
34
字号
package com.icss.oa.bean;

public class ReaderUser {
	private int personid;
	private int readid;
	private String name;
	private String postion;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getPostion() {
		return postion;
	}
	public void setPostion(String postion) {
		this.postion = postion;
	}
	public int getPersonid() {
		return personid;
	}
	public void setPersonid(int personid) {
		this.personid = personid;
	}
	public int getReadid() {
		return readid;
	}
	public void setReadid(int readid) {
		this.readid = readid;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?