mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
update vef alert
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user