| 123456789101112131415161718192021222324252627 |
- import type {PageInfoModel} from "~/apis/model/common";
- export interface UserInviteProfitParams {
- pageNum: number
- pageSize: number
- uid: string
- commission_type?: string
- }
- export interface AccumulateIncomeModel {
- // 累计收入
- numberSun: number
- // 奖励收益
- rewardProfit: string
- pageInfo: PageInfoModel<AccumulatedIncomeListModel>
- // 分享收益
- shareProfit: number
- // 未结算收益
- UserUnsettledInviteProfit: number
- }
- export interface AccumulatedIncomeListModel {
- // 收益金额
- number: string
- // 收益标题
- title: string
- // 收益时间
- createTime: string
- }
|