fetch(modify):修复角色分配权限
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 2m36s
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 2m36s
This commit is contained in:
@@ -318,6 +318,7 @@ export interface StandaloneCardQueryParams extends PaginationParams {
|
||||
is_replaced?: boolean // 是否有换卡记录
|
||||
iccid_start?: string // ICCID起始号
|
||||
iccid_end?: string // ICCID结束号
|
||||
series_id?: number // 套餐系列ID
|
||||
}
|
||||
|
||||
// 单卡信息
|
||||
@@ -347,6 +348,7 @@ export interface StandaloneIotCard {
|
||||
activated_at?: string | null // 激活时间 (可选)
|
||||
created_at: string // 创建时间
|
||||
updated_at: string // 更新时间
|
||||
series_id?: number | null // 套餐系列ID
|
||||
}
|
||||
|
||||
// ========== 单卡批量分配和回收相关 ==========
|
||||
@@ -488,7 +490,7 @@ export interface IotCardDetailResponse {
|
||||
// 批量设置卡的套餐系列绑定请求参数
|
||||
export interface BatchSetCardSeriesBindingRequest {
|
||||
iccids: string[] // ICCID列表(最多500个)
|
||||
series_allocation_id: number // 套餐系列分配ID(0表示清除关联)
|
||||
series_id: number // 套餐系列ID(0表示清除关联)
|
||||
}
|
||||
|
||||
// 卡套餐系列绑定失败项
|
||||
|
||||
@@ -34,6 +34,7 @@ export interface Device {
|
||||
activated_at: string | null // 激活时间
|
||||
created_at: string // 创建时间
|
||||
updated_at: string // 更新时间
|
||||
series_id?: number | null // 套餐系列ID
|
||||
}
|
||||
|
||||
// 设备查询参数
|
||||
@@ -47,6 +48,7 @@ export interface DeviceQueryParams extends PaginationParams {
|
||||
manufacturer?: string // 制造商(模糊查询)
|
||||
created_at_start?: string // 创建时间起始
|
||||
created_at_end?: string // 创建时间结束
|
||||
series_id?: number // 套餐系列ID
|
||||
}
|
||||
|
||||
// 设备列表响应
|
||||
@@ -207,7 +209,7 @@ export interface DeviceImportTaskDetail extends DeviceImportTask {
|
||||
// 批量设置设备的套餐系列绑定请求参数
|
||||
export interface BatchSetDeviceSeriesBindingRequest {
|
||||
device_ids: number[] // 设备ID列表(最多500个)
|
||||
series_allocation_id: number // 套餐系列分配ID(0表示清除关联)
|
||||
series_id: number // 套餐系列ID(0表示清除关联)
|
||||
}
|
||||
|
||||
// 设备套餐系列绑定失败项
|
||||
|
||||
1
src/types/components.d.ts
vendored
1
src/types/components.d.ts
vendored
@@ -131,6 +131,7 @@ declare module 'vue' {
|
||||
ElTimelineItem: typeof import('element-plus/es')['ElTimelineItem']
|
||||
ElTimePicker: typeof import('element-plus/es')['ElTimePicker']
|
||||
ElTooltip: typeof import('element-plus/es')['ElTooltip']
|
||||
ElTransfer: typeof import('element-plus/es')['ElTransfer']
|
||||
ElTree: typeof import('element-plus/es')['ElTree']
|
||||
ElTreeSelect: typeof import('element-plus/es')['ElTreeSelect']
|
||||
ElUpload: typeof import('element-plus/es')['ElUpload']
|
||||
|
||||
Reference in New Issue
Block a user