feat(exc): complete monitoring details

This commit is contained in:
2026-09-09 10:34:48 +08:00
parent 0a3378afae
commit 96baec165c
5 changed files with 52 additions and 20 deletions
+7
View File
@@ -598,6 +598,9 @@ export interface ExcDemand {
summary?: string | null
content?: string | null
address?: unknown
lat?: number | null
lng?: number | null
duration?: number | null
quote_deadline?: string | null
related_services?: Array<{ id: number; title?: string | null; category_name?: string | null }>
quotes?: Array<{
@@ -685,6 +688,7 @@ export interface ExcOrder {
buyer_remarks?: string | null
pay_order_no?: string | null
paid_channel?: string | null
cancellation_fee_due_date?: string | null
items?: Array<{
id: number
name?: string | null
@@ -722,6 +726,9 @@ export interface ExcProvider {
current_service_order_id?: number | null
created_at?: string
// detail-only
last_lat?: number | null
last_lng?: number | null
location_accuracy_m?: number | null
dispatch_setting?: {
auto_grab_enabled?: boolean
service_whitelist?: string[]