update vef alert

This commit is contained in:
2024-01-18 08:16:37 +08:00
parent 6f4f602488
commit 6b20366670
11 changed files with 191 additions and 25 deletions

View File

@@ -173,6 +173,7 @@ export enum FunctionTypes {
Schedule,
SongRequest,
Queue,
Point
}
export interface SongAuthorInfo {
name: string
@@ -499,3 +500,29 @@ export enum FeedbackStatus {
Reject,
Developing,
}
export interface TagInfo
{
name: string
color: string
}
export enum GoodsStatus
{
Normal, // 商品正常
//OutOfStock, // 商品无货
Discontinued // 商品下架
}
export enum GoodsTypes {
Physical,
Virtual,
}
export interface ResponsePointGoodModel {
id: number
name: string
count: number
price: number
tags: TagInfo[]
cover?: string
images: string[]
status: GoodsStatus
type: GoodsTypes
}