feat: 新增设备激活时间
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m7s

This commit is contained in:
sexygoat
2026-05-12 14:54:47 +08:00
parent 471d1196b3
commit 1690252740
11 changed files with 229 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
export {}
declare module '@/types/api/device' {
interface Device {
activation_status?: number
activation_status_name?: string
}
interface DeviceQueryParams {
activation_status?: number | null
}
}
declare module '@/types/api/asset' {
interface AssetResolveResponse {
activation_status_name?: string
}
}