⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reportdto.java

📁 海鲜超市管理 登录 修改 增加 等功能jsp+servlet
💻 JAVA
字号:
/*
 * 创建日期 2006-12-21
 * TODO
 */
package module.income.dto;

/**
 * @author HuiPengyu
 * TODO 
 */
public class ReportDto {
	private String name;
	private String date;
	private String income;
	private String expense;

	/**
	 * @return 返回 date。
	 */
	public String getDate() {
		return date;
	}
	/**
	 * @param date 要设置的 date。
	 */
	public void setDate(String date) {
		this.date = date;
	}
	/**
	 * @return 返回 expense。
	 */
	public String getExpense() {
		return expense;
	}
	/**
	 * @param expense 要设置的 expense。
	 */
	public void setExpense(String expense) {
		this.expense = expense;
	}
	/**
	 * @return 返回 income。
	 */
	public String getIncome() {
		return income;
	}
	/**
	 * @param income 要设置的 income。
	 */
	public void setIncome(String income) {
		this.income = income;
	}
	/**
	 * @return 返回 name。
	 */
	public String getName() {
		return name;
	}
	/**
	 * @param name 要设置的 name。
	 */
	public void setName(String name) {
		this.name = name;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -