update eventfetcher info display

This commit is contained in:
2024-01-20 23:51:21 +08:00
parent 6b20366670
commit 8dd85f205d
15 changed files with 783 additions and 294 deletions

View File

@@ -43,6 +43,8 @@ export interface AccountInfo extends UserInfo {
eventFetcherOnline: boolean
eventFetcherStatus: string
eventFetcherStatusV3: { [errorCode: string]: string }
eventFetcherTodayReceive: number
eventFetcherVersion?: string
nextSendEmailTime?: number
isServerFetcherOnline: boolean
@@ -525,4 +527,19 @@ export interface ResponsePointGoodModel {
images: string[]
status: GoodsStatus
type: GoodsTypes
}
export interface PointGoodsModel {
id?: number
name: string
count: number
price: number
tags: TagInfo[]
coverImageBase64?: string
status: GoodsStatus
type: GoodsTypes
collectUrl?: string
embedCollectUrl?: boolean
description: string
content?: string
}