| 1234567891011121314151617181920212223242526272829 |
- type PlanTagType = import('@/defines').PlanTagType;
- declare namespace API {
- type Plan = {
- channelItemId?: string;
- title?: string;
- subTitle?: string;
- introduce?: string;
- orgPrice?: number;
- price?: number;
- tag?: string;
- tagType?: PlanTagType;
- currency?: number;
- recommend?: boolean;
- isDefault?: boolean;
- sort?: number;
- deviceLimit?: number;
- isSubscribe?: boolean;
- subscribeType?: number;
- subscribePeriodValue?: number;
- payoutType?: string;
- payoutData?: string;
- };
- type PlanList = {
- total: number;
- list: Plan[];
- }
- }
|