⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 docdispachreq.java

📁 实现了基本的oa功能:个人日志。。。
💻 JAVA
字号:
package oa.dailywork.model.po;

import java.util.Date;

/**
 * DocDispachReq generated by MyEclipse Persistence Tools
 */

public class DocDispachReq implements java.io.Serializable {

	// Fields

	private Long reqId;

	private Long docId;

	private Long deptId;

	private Long userId;

	private Date requestTime;

	private Long requestLimit;

	private String requestType;

	private String status;

	private Date firstTime;

	private Date secondTime;

	private Long firstId;

	private Long secondId;

	// Constructors

	/** default constructor */
	public DocDispachReq() {
	}

	/** minimal constructor */
	public DocDispachReq(Long docId, Long deptId, Long userId,
			Date requestTime, Long requestLimit, String status) {
		this.docId = docId;
		this.deptId = deptId;
		this.userId = userId;
		this.requestTime = requestTime;
		this.requestLimit = requestLimit;
		this.status = status;
	}

	/** full constructor */
	public DocDispachReq(Long docId, Long deptId, Long userId,
			Date requestTime, Long requestLimit, String requestType,
			String status, Date firstTime, Date secondTime, Long firstId,
			Long secondId) {
		this.docId = docId;
		this.deptId = deptId;
		this.userId = userId;
		this.requestTime = requestTime;
		this.requestLimit = requestLimit;
		this.requestType = requestType;
		this.status = status;
		this.firstTime = firstTime;
		this.secondTime = secondTime;
		this.firstId = firstId;
		this.secondId = secondId;
	}

	// Property accessors

	public Long getReqId() {
		return this.reqId;
	}

	public void setReqId(Long reqId) {
		this.reqId = reqId;
	}

	public Long getDocId() {
		return this.docId;
	}

	public void setDocId(Long docId) {
		this.docId = docId;
	}

	public Long getDeptId() {
		return this.deptId;
	}

	public void setDeptId(Long deptId) {
		this.deptId = deptId;
	}

	public Long getUserId() {
		return this.userId;
	}

	public void setUserId(Long userId) {
		this.userId = userId;
	}

	public Date getRequestTime() {
		return this.requestTime;
	}

	public void setRequestTime(Date requestTime) {
		this.requestTime = requestTime;
	}

	public Long getRequestLimit() {
		return this.requestLimit;
	}

	public void setRequestLimit(Long requestLimit) {
		this.requestLimit = requestLimit;
	}

	public String getRequestType() {
		return this.requestType;
	}

	public void setRequestType(String requestType) {
		this.requestType = requestType;
	}

	public String getStatus() {
		return this.status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public Date getFirstTime() {
		return this.firstTime;
	}

	public void setFirstTime(Date firstTime) {
		this.firstTime = firstTime;
	}

	public Date getSecondTime() {
		return this.secondTime;
	}

	public void setSecondTime(Date secondTime) {
		this.secondTime = secondTime;
	}

	public Long getFirstId() {
		return this.firstId;
	}

	public void setFirstId(Long firstId) {
		this.firstId = firstId;
	}

	public Long getSecondId() {
		return this.secondId;
	}

	public void setSecondId(Long secondId) {
		this.secondId = secondId;
	}

}

⌨️ 快捷键说明

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