实现价格折扣动态调整

This commit is contained in:
2026-03-24 17:14:50 +08:00
parent 8751ac19a6
commit 523d46874b
13 changed files with 1189 additions and 56 deletions

View File

@@ -0,0 +1,6 @@
import type { Model } from "./base/model"
export type ProductDiscount = Model & {
name: string
discount: number
}