修复
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m35s

This commit is contained in:
sexygoat
2026-03-31 15:13:19 +08:00
parent 104d62b17d
commit 3372be99b8
9 changed files with 383 additions and 218 deletions

View File

@@ -24,9 +24,8 @@ export interface PaginationParams {
export interface PaginationData<T> {
items: T[] // 数据列表
total: number // 总数
page_size: number // 每页数量
size: number // 每页数量
page: number // 当前页
total_pages: number // 总页数
}
// 分页响应

View File

@@ -39,7 +39,7 @@ export interface EnterpriseDevicePageResult {
* 授权设备请求参数
*/
export interface AllocateDevicesRequest {
virtual_nos: string[] | null // 虚拟号列表最多100个,原 device_nos
device_nos: string[] | null // 设备号列表最多100个
remark?: string // 授权备注
}
@@ -76,7 +76,7 @@ export interface AllocateDevicesResponse {
* 撤销设备授权请求参数
*/
export interface RecallDevicesRequest {
virtual_nos: string[] | null // 虚拟号列表最多100个,原 device_nos
device_nos: string[] | null // 设备号列表最多100个
}
/**

View File

@@ -3,7 +3,7 @@
*/
// 支付渠道类型
export type PaymentProviderType = 'wechat' | 'fuiou'
export type PaymentProviderType = 'wechat' | 'wechat_v2' | 'fuiou'
// 微信支付配置
export interface WechatConfig {