📄 userfeequerycondform.java
字号:
package netctoss.selfservice.forms;
import org.apache.struts.action.ActionForm;
/**
* 把查询帐单的信息传递到后台程序
* @author liyan
*
*/
public class UserFeeQueryCondForm extends ActionForm {
/**
* 查询的年份
*/
private int year;
/**
* 查询的月份
*/
private int month;
/**
* 分页的页码
*/
private int page;
/**
* 业务帐号
*/
private String loginName;
/**
* 服务器IP
*/
private String labip;
public String getLoginName() {
return loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public int getMonth() {
return month;
}
public void setMonth(int month) {
this.month = month;
}
public String getLabip() {
return labip;
}
public void setLabip(String labip) {
this.labip = labip;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -