fetch(modify):修复角色分配权限
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 2m36s

This commit is contained in:
sexygoat
2026-02-02 17:08:49 +08:00
parent f62437379d
commit 06cde977ad
14 changed files with 789 additions and 267 deletions

View File

@@ -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 // 套餐系列分配ID0表示清除关联
series_id: number // 套餐系列ID0表示清除关联
}
// 卡套餐系列绑定失败项

View File

@@ -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 // 套餐系列分配ID0表示清除关联
series_id: number // 套餐系列ID0表示清除关联
}
// 设备套餐系列绑定失败项