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