feat(energy): integrate self-operated station customers and receipts
ci/woodpecker/push/woodpecker Pipeline was canceled

Co-authored-by: HiFox Agent <agents-noreply@hifox.com>
This commit is contained in:
kfluous
2026-09-05 17:03:15 +08:00
co-authored by HiFox Agent
parent 637a72c1e9
commit a177781fe7
14 changed files with 380 additions and 71 deletions
+7
View File
@@ -185,6 +185,13 @@ export interface HydrogenStationBoardResponse {
selected: {
daily: HydrogenStationBoardDailyRow[];
customerMonths: HydrogenStationBoardCustomerMonth[];
externalCustomerMonths?: HydrogenStationBoardCustomerMonth[];
externalReceipts?: {
scope: 'customer';
reason?: string;
rows: Array<{ id: string; date: string; customerName: string; amount: number;
payMethod: string; source: string; sourceRecordCount: number; updatedAt: string | null }>;
};
} | null;
}