outboxannex.java

来自「一个jsp的oa系统,里面有很多亮点学习!」· Java 代码 · 共 36 行

JAVA
36
字号
package com.oa.lp.model;

public class OutBoxAnnex {

	private int outBoxAnnexId;
	private int outId;
	private String name;
	private String path;
	public int getOutBoxAnnexId() {
		return outBoxAnnexId;
	}
	public void setOutBoxAnnexId(int outBoxAnnexId) {
		this.outBoxAnnexId = outBoxAnnexId;
	}
	public int getOutId() {
		return outId;
	}
	public void setOutId(int outId) {
		this.outId = outId;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getPath() {
		return path;
	}
	public void setPath(String path) {
		this.path = path;
	}
	
	
}

⌨️ 快捷键说明

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