【代码优化】MALL: 满减送活动范围重构

This commit is contained in:
puhui999
2024-08-22 17:25:10 +08:00
parent 45fc9957af
commit 25b23881b0
2 changed files with 58 additions and 26 deletions

View File

@ -9,7 +9,9 @@ export interface RewardActivityVO {
remark?: string
conditionType?: number
productScope?: number
productSpuIds?: number[]
productScopeValues?: number[] // 商品范围:值为 品类编号列表 或 商品编号列表 ,用于提交
productCategoryIds?: number[] // 仅用于表单,不提交
productSpuIds?: number[] // 仅用于表单,不提交
rules?: RewardRule[]
}