10 lines
139 B
TypeScript
10 lines
139 B
TypeScript
/**
|
|
* 优惠券
|
|
*/
|
|
export interface ShopCouponApplyCate {
|
|
id?: number;
|
|
couponId?: number;
|
|
cateId?: number;
|
|
cateLevel?: number;
|
|
}
|