?? userfileim.java
字號:
package com.yhbbs.upload.bean;
import com.yhbbs.upload.itface.UserFile;
/**
* <p>Title:瀏覽用戶上傳文件屬性類</p>
* <li>瀏覽上傳文件的所有屬性(用戶瀏覽自己上傳附件用)</li>
* <br><b>WebSite: www.yyhweb.com</b>
* <br><b>CopyRight: yyhweb[由由華網]</b>
* @author stephen
* @version YHBBS-2.0
*/
public class UserFileIm implements UserFile {
private int id = 0;
private int artid = 0;
private int forum = 0;
private int classid = 0;
private int author = 0;
private String title = "";
private String filename = "";
private int filesize = 0;
private String realname = "";
private String ptime = "";
private String path = "";
private int downtimes = 0;
public int getArtid() {
return artid;
}
public void setArtid(int artid) {
this.artid = artid;
}
public int getAuthor() {
return author;
}
public void setAuthor(int author) {
this.author = author;
}
public String getFilename() {
return filename;
}
public void setFilename(String filename) {
this.filename = filename;
}
public int getFilesize() {
return filesize;
}
public void setFilesize(int filesize) {
this.filesize = filesize;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getPtime() {
return ptime;
}
public void setPtime(String ptime) {
this.ptime = ptime;
}
public String getRealname() {
return realname;
}
public void setRealname(String realname) {
this.realname = realname;
}
public int getDowntimes() {
return downtimes;
}
public void setDowntimes(int downtimes) {
this.downtimes = downtimes;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getClassid() {
return classid;
}
public void setClassid(int classid) {
this.classid = classid;
}
public int getForum() {
return forum;
}
public void setForum(int forum) {
this.forum = forum;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -