?? incomebean.java
字號(hào):
package com.j1132.bean;
import java.util.Date;
public class IncomeBean {
public IncomeBean() {
}
//收入表的號(hào)
private long income_id;
//部門號(hào)
private long dept_id;
//日收入
private int daily_income;
//交易日期
private Date bussiness_date;
//最后修改時(shí)間
private Date lst_mod_timestemp;
//部門名稱
private String dept_name;
public String getDept_name() {
return dept_name;
}
public void setDept_name(String dept_name) {
this.dept_name = dept_name;
}
public IncomeBean(long income_id, long dept_id, int daily_income,
Date bussiness_date, Date lst_mod_timestemp,String dept_name) {
this.income_id = income_id;
this.dept_id = dept_id;
this.daily_income = daily_income;
this.bussiness_date = bussiness_date;
this.lst_mod_timestemp = lst_mod_timestemp;
this.dept_name = dept_name;
}
public long getIncome_id() {
return income_id;
}
public void setIncome_id(long income_id) {
this.income_id = income_id;
}
public long getDept_id() {
return dept_id;
}
public void setDept_id(long dept_id) {
this.dept_id = dept_id;
}
public int getDaily_income() {
return daily_income;
}
public void setDaily_income(int daily_income) {
this.daily_income = daily_income;
}
public Date getBussiness_date() {
return bussiness_date;
}
public void setBussiness_date(Date bussiness_date) {
this.bussiness_date = bussiness_date;
}
public Date getLst_mod_timestemp() {
return lst_mod_timestemp;
}
public void setLst_mod_timestemp(Date lst_mod_timestemp) {
this.lst_mod_timestemp = lst_mod_timestemp;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -