?? reportform.java
字號:
package com.yuanchung.sales.struts.report.form;
import org.apache.struts.action.ActionForm;
import com.yuanchung.sales.model.report.ReportCategory;
/**
* 報表ActionForm
* @author gzq
*
*/
public class ReportForm extends ActionForm {
private Integer id;
private String name;
private Integer defaultCondition;
private String startDate;
private String endDate;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getDefaultCondition() {
return defaultCondition;
}
public void setDefaultCondition(Integer defaultCondition) {
this.defaultCondition = defaultCondition;
}
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -