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

📄 downrecord.java

📁 在myMyEclipse坏境下
💻 JAVA
字号:
package ssh2Down.dao;

import java.util.Date;

/**
 * Downrecord entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Downrecord implements java.io.Serializable {

	// Fields

	private Integer recordId;
	private Downfile downfile;
	private Users users;
	private Date downDate;

	// Constructors

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

	/** minimal constructor */
	public Downrecord(Integer recordId) {
		this.recordId = recordId;
	}

	/** full constructor */
	public Downrecord(Integer recordId, Downfile downfile, Users users,
			Date downDate) {
		this.recordId = recordId;
		this.downfile = downfile;
		this.users = users;
		this.downDate = downDate;
	}

	// Property accessors

	public Integer getRecordId() {
		return this.recordId;
	}

	public void setRecordId(Integer recordId) {
		this.recordId = recordId;
	}

	public Downfile getDownfile() {
		return this.downfile;
	}

	public void setDownfile(Downfile downfile) {
		this.downfile = downfile;
	}

	public Users getUsers() {
		return this.users;
	}

	public void setUsers(Users users) {
		this.users = users;
	}

	public Date getDownDate() {
		return this.downDate;
	}

	public void setDownDate(Date downDate) {
		this.downDate = downDate;
	}

}

⌨️ 快捷键说明

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