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

📄 docacceptdoc.java

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

import java.util.Date;

/**
 * DocAcceptDoc generated by MyEclipse Persistence Tools
 */

public class DocAcceptDoc implements java.io.Serializable {

	// Fields

	private Long docId;

	private Long deptId;

	private Long secret;

	private String docTitle;

	private Date createTime;

	private Long createManId;

	private String mark;

	private Long docAcceptId;

	// Constructors

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

	/** minimal constructor */
	public DocAcceptDoc(Long deptId, Long secret, String docTitle,
			Date createTime, Long createManId, Long docAcceptId) {
		this.deptId = deptId;
		this.secret = secret;
		this.docTitle = docTitle;
		this.createTime = createTime;
		this.createManId = createManId;
		this.docAcceptId = docAcceptId;
	}

	/** full constructor */
	public DocAcceptDoc(Long deptId, Long secret, String docTitle,
			Date createTime, Long createManId, String mark, Long docAcceptId) {
		this.deptId = deptId;
		this.secret = secret;
		this.docTitle = docTitle;
		this.createTime = createTime;
		this.createManId = createManId;
		this.mark = mark;
		this.docAcceptId = docAcceptId;
	}

	// Property accessors

	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 getSecret() {
		return this.secret;
	}

	public void setSecret(Long secret) {
		this.secret = secret;
	}

	public String getDocTitle() {
		return this.docTitle;
	}

	public void setDocTitle(String docTitle) {
		this.docTitle = docTitle;
	}

	public Date getCreateTime() {
		return this.createTime;
	}

	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}

	public Long getCreateManId() {
		return this.createManId;
	}

	public void setCreateManId(Long createManId) {
		this.createManId = createManId;
	}

	public String getMark() {
		return this.mark;
	}

	public void setMark(String mark) {
		this.mark = mark;
	}

	public Long getDocAcceptId() {
		return this.docAcceptId;
	}

	public void setDocAcceptId(Long docAcceptId) {
		this.docAcceptId = docAcceptId;
	}

}

⌨️ 快捷键说明

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