添加公告中的发行版字段

This commit is contained in:
fanbook-wangdage
2026-01-16 11:38:18 +08:00
parent 29b8e6e8bf
commit d4de66cd8a
3 changed files with 29 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ export interface Announcement {
MaxPresentVersion: string | null
Severity: number
Title: string
Distribution: string | null
}
/** 公告列表响应数据类型 */
@@ -38,6 +39,7 @@ export interface CreateAnnouncementRequest {
Locale?: string | null
MaxPresentVersion?: string | null
Severity?: number | null
Distribution?: string | null
}
/** 创建公告响应数据类型 */