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

📄 downfile.java

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

import java.util.Date;
import java.util.HashSet;
import java.util.Set;

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

public class Downfile implements java.io.Serializable {

	// Fields

	private String code;
	private Users users;
	private String downName;
	private Integer fileSize;
	private String saveName;
	private String description;
	private Date loadDate;
	private Set downrecords = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Downfile(String code) {
		this.code = code;
	}

	/** full constructor */
	public Downfile(String code, Users users, String downName,
			Integer fileSize, String saveName, String description,
			Date loadDate, Set downrecords) {
		this.code = code;
		this.users = users;
		this.downName = downName;
		this.fileSize = fileSize;
		this.saveName = saveName;
		this.description = description;
		this.loadDate = loadDate;
		this.downrecords = downrecords;
	}

	// Property accessors

	public String getCode() {
		return this.code;
	}

	public void setCode(String code) {
		this.code = code;
	}

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

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

	public String getDownName() {
		return this.downName;
	}

	public void setDownName(String downName) {
		this.downName = downName;
	}

	public Integer getFileSize() {
		return this.fileSize;
	}

	public void setFileSize(Integer fileSize) {
		this.fileSize = fileSize;
	}

	public String getSaveName() {
		return this.saveName;
	}

	public void setSaveName(String saveName) {
		this.saveName = saveName;
	}

	public String getDescription() {
		return this.description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public Date getLoadDate() {
		return this.loadDate;
	}

	public void setLoadDate(Date loadDate) {
		this.loadDate = loadDate;
	}

	public Set getDownrecords() {
		return this.downrecords;
	}

	public void setDownrecords(Set downrecords) {
		this.downrecords = downrecords;
	}

}

⌨️ 快捷键说明

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