high-six-day08/src/com/bw/dao/Bill.java

56 lines
976 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bw.dao;
/**
* @Author胡杨
* @nameBill
* @Date2024/7/26 上午8:42
* @Description: com.bw.dao
*/
public class Bill {
/** 账单编号*/
private String billId;
/** 账单时间*/
private String billDate;
/** 账单金额*/
private String billMonerv;
public String getBillId() {
return billId;
}
public void setBillId(String billId) {
this.billId = billId;
}
public String getBillDate() {
return billDate;
}
public void setBillDate(String billDate) {
this.billDate = billDate;
}
public String getBillMonerv() {
return billMonerv;
}
public void setBillMonerv(String billMonerv) {
this.billMonerv = billMonerv;
}
public Bill() {
}
public Bill(String billId, String billDate, String billMonerv) {
this.billId = billId;
this.billDate = billDate;
this.billMonerv = billMonerv;
}
}