📄 billitembean.java
字号:
package com.j1132.bean;
public class BillItemBean {
public BillItemBean(){
}
//账单号
private long bill_ID;
//部门号
private long dept_ID;
//账单项号
private long bill_item_ID;
//账单项金额
private long bill_item_expense;
public BillItemBean(long bill_ID,long dept_ID,long bill_item_ID,long bill_item_expense){
this.bill_ID = bill_ID;
this.dept_ID = dept_ID;
this.bill_item_ID = bill_item_ID;
this.bill_item_expense = bill_item_expense;
}
public long getBill_ID() {
return bill_ID;
}
public void setBill_ID(long bill_ID) {
this.bill_ID = bill_ID;
}
public long getDept_ID() {
return dept_ID;
}
public void setDept_ID(long dept_ID) {
this.dept_ID = dept_ID;
}
public long getBill_item_ID() {
return bill_item_ID;
}
public void setBill_item_ID(long bill_item_ID) {
this.bill_item_ID = bill_item_ID;
}
public long getBill_item_expense() {
return bill_item_expense;
}
public void setBill_item_expense(long bill_item_expense) {
this.bill_item_expense = bill_item_expense;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -