uploadfile.java
来自「自己编写的一个spring框架下实现文件上传的例子」· Java 代码 · 共 42 行
JAVA
42 行
package com.mr.UpLoad;
public class UploadFile {
Integer id;
String tpname;
String path;
byte[] contents;
String tpsize;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTpname() {
return tpname;
}
public void setTpname(String tpname) {
this.tpname = tpname;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getTpsize() {
return tpsize;
}
public void setTpsize(String tpsize) {
this.tpsize = tpsize;
}
public byte[] getContents() {
return contents;
}
public void setContents(byte[] contents) {
this.contents = contents;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?