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