📄 smalltypeform.java~1~
字号:
package com.domain;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;
public class SmallTypeForm
extends ActionForm {
private Integer bigId;
private String creaTime;
private Integer id;
private String smallName;
public Integer getBigId() {
return bigId;
}
public void setBigId(Integer bigId) {
this.bigId = bigId;
}
public void setSmallName(String smallName) {
this.smallName = smallName;
}
public void setId(Integer id) {
this.id = id;
}
public void setCreaTime(String creaTime) {
this.creaTime = creaTime;
}
public String getCreaTime() {
return creaTime;
}
public Integer getId() {
return id;
}
public String getSmallName() {
return smallName;
}
public ActionErrors validate(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
/** @todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping,
HttpServletRequest servletRequest) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -