1、新增礼品卡模块

2、完善优惠券
This commit is contained in:
2025-08-11 19:20:16 +08:00
parent 32fe74c71f
commit 25c7c3e984
12 changed files with 1347 additions and 395 deletions

View File

@@ -1,4 +1,6 @@
import type { PageParam } from '@/api/index';
import {ShopCouponApplyCate} from "@/api/shop/shopCouponApplyCate/model";
import {ShopCouponApplyItem} from "@/api/shop/shopCouponApplyItem/model";
/**
* 优惠券
@@ -54,6 +56,8 @@ export interface ShopCoupon {
limitPerUser?: number;
// 是否启用(0禁用 1启用)
enabled?: string;
couponApplyCateList?: ShopCouponApplyCate[];
couponApplyItemList?: ShopCouponApplyItem[];
}
/**