12 lines
132 B
TypeScript
12 lines
132 B
TypeScript
|
|
/**
|
|
* 优惠券
|
|
*/
|
|
export interface ShopCouponApplyItem {
|
|
id?: number;
|
|
couponId?: number;
|
|
type?: number;
|
|
pk?: number;
|
|
|
|
}
|