📄 serviceform.java
字号:
package com.model.form;
import org.apache.struts.action.ActionForm;
import org.apache.struts.upload.FormFile;
public class ServiceForm extends ActionForm{
private FormFile file;
private String title;
private String newsId;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public FormFile getFile() {
return file;
}
public void setFile(FormFile file) {
this.file = file;
}
public String getNewsId() {
return newsId;
}
public void setNewsId(String newsId) {
this.newsId = newsId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -