fix music request

This commit is contained in:
2024-01-21 23:43:27 +08:00
parent 8dd85f205d
commit c1d8f75690
10 changed files with 282 additions and 79 deletions

View File

@@ -520,7 +520,9 @@ export enum GoodsTypes {
export interface ResponsePointGoodModel {
id: number
name: string
count: number
description: string
content?: string
count?: number
price: number
tags: TagInfo[]
cover?: string
@@ -528,14 +530,17 @@ export interface ResponsePointGoodModel {
status: GoodsStatus
type: GoodsTypes
}
export interface ImageUploadModel{
existImages: string[]
newImagesBase64: string[]
}
export interface PointGoodsModel {
id?: number
name: string
count: number
price: number
tags: TagInfo[]
coverImageBase64?: string
cover?: ImageUploadModel
status: GoodsStatus
type: GoodsTypes
collectUrl?: string