download.java

来自「本程序的功能如下: 1)本程序完全采用jsp脚本技术 2)后台管理」· Java 代码 · 共 80 行

JAVA
80
字号
package org.xg.download;

import java.sql.Date;

public class Download
{
	private int id ;
	private String filename ;
	private int downcount ;
	private Date uploadtime ;
	private String verify ;
	private String title ;
	private String desccontent ;
	private int filesize ;
	public int getFilesize()
	{
		return filesize;
	}
	public void setFilesize(int filesize)
	{
		this.filesize = filesize;
	}
	public String getDesccontent()
	{
		return desccontent;
	}
	public void setDesccontent(String desccontent)
	{
		this.desccontent = desccontent;
	}
	public String getTitle()
	{
		return title;
	}
	public void setTitle(String title)
	{
		this.title = title;
	}
	public int getId()
	{
		return id;
	}
	public void setId(int id)
	{
		this.id = id;
	}
	public String getFilename()
	{
		return filename;
	}
	public void setFilename(String filename)
	{
		this.filename = filename;
	}
	public int getDowncount()
	{
		return downcount;
	}
	public void setDowncount(int downcount)
	{
		this.downcount = downcount;
	}
	public Date getUploadtime()
	{
		return uploadtime;
	}
	public void setUploadtime(Date uploadtime)
	{
		this.uploadtime = uploadtime;
	}
	public String getVerify()
	{
		return verify;
	}
	public void setVerify(String verify)
	{
		this.verify = verify;
	}
}

⌨️ 快捷键说明

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