fix: mall SeckillActivity

(cherry picked from commit 36c0bce184)
This commit is contained in:
puhui999
2023-07-05 11:32:32 +08:00
committed by shizhong
parent 1ab348f8df
commit de53abb249
6 changed files with 140 additions and 97 deletions

View File

@ -23,14 +23,13 @@ export interface SeckillActivityVO {
// 秒杀活动所需属性
export interface SeckillProductVO {
spuId: number
skuId: number
seckillPrice: number
stock: number
}
// 扩展 Sku 配置
type SkuExtension = Sku & {
export type SkuExtension = Sku & {
productConfig: SeckillProductVO
}