billitembean.java
来自「cantain海鲜超市管理系统」· Java 代码 · 共 58 行
JAVA
58 行
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 + =
减小字号Ctrl + -
显示快捷键?