userfeequerycondform.java

来自「java电信经典-学习例子源代码」· Java 代码 · 共 65 行

JAVA
65
字号
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 + =
减小字号Ctrl + -
显示快捷键?