update music obs component avatar

This commit is contained in:
2024-01-31 17:20:23 +08:00
parent 8de805de9c
commit b8c6b52d6c
7 changed files with 163 additions and 65 deletions

View File

@@ -525,7 +525,7 @@ export interface ResponsePointGoodModel {
content?: string
count?: number
price: number
tags: TagInfo[]
tags: string[]
cover?: string
images: string[]
status: GoodsStatus
@@ -540,7 +540,7 @@ export interface PointGoodsModel {
name: string
count: number
price: number
tags: TagInfo[]
tags: string[]
cover?: ImageUploadModel
status: GoodsStatus
type: GoodsTypes
@@ -549,3 +549,21 @@ export interface PointGoodsModel {
description: string
content?: string
}
export interface AddressInfo {
province: string
city: string
district: string
address: string
phone: number
name: string
}
export interface BiliAuthModel {
id: number
userId: number
openId: string
address?: AddressInfo
}
export interface PointOrderModel{
id: number
}