📄 serviceform.java
字号:
package com.t53.crm4.serve.web.form;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import com.t53.crm4.common.PaginationBean;
import com.t53.crm4.common.entity.CstService;
public class ServiceForm extends ActionForm {
private PaginationBean pageBean = new PaginationBean();
private CstService cstService=new CstService();
private String time1;
private String time2;
public void reset(ActionMapping mapping, HttpServletRequest request) {
this.cstService = new CstService();
}
public CstService getCstService() {
return cstService;
}
public void setCstService(CstService cstService) {
this.cstService = cstService;
}
public PaginationBean getPageBean() {
return pageBean;
}
public void setPageBean(PaginationBean pageBean) {
this.pageBean = pageBean;
}
public String getTime1() {
return time1;
}
public void setTime1(String time1) {
this.time1 = time1;
}
public String getTime2() {
return time2;
}
public void setTime2(String time2) {
this.time2 = time2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -