15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
export class BillSettlementReportItem {
|
|
date: string;
|
|
billId: string;
|
|
amount: number;
|
|
settlement: string;
|
|
|
|
public constructor(init?: Partial<BillSettlementReportItem>) {
|
|
this.date = '';
|
|
this.billId = '';
|
|
this.amount = 0;
|
|
this.settlement = '';
|
|
Object.assign(this, init);
|
|
}
|
|
}
|