接单员与财务管理

This commit is contained in:
liu
2026-06-17 10:35:13 +08:00
parent 254823e308
commit 8d52e863b9
110 changed files with 6054 additions and 570 deletions
+14
View File
@@ -0,0 +1,14 @@
export default interface IRunnerDeposit {
id?: number;
deposit_no?: string;
worker_id?: number;
user_id?: number;
amount?: number;
status?: number;
deduct_reason?: string;
paid_at?: string;
refund_at?: string;
deducted_at?: string;
created_at?: string;
updated_at?: string;
}