📄 upfileim.java
字号:
package com.yhbbs.upload.bean;
import com.yhbbs.upload.itface.UpFile;
/**
* <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 UpFileIm implements UpFile {
private int id = 0;
private int artid = 0;
private int author = 0;
private String filename = "";
private String filetype = "";
private int filesize = 0;
private String realname = "";
private String ptime = "";
private String path = "";
private int width = 0;
private int height = 0;
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 String getFiletype() {
return filetype;
}
public void setFiletype(String filetype) {
this.filetype = filetype;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
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 getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getDowntimes() {
return downtimes;
}
public void setDowntimes(int downtimes) {
this.downtimes = downtimes;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -