You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
class APIV2 {
|
|
static UserAPI userAPI = UserAPI();
|
|
}
|
|
|
|
class UserAPI {
|
|
///我的收益
|
|
String get userBenefit => '/v2/app/user/income';
|
|
|
|
///余额信息
|
|
String get balanceInfo => '/v2/app/user/balance/info';
|
|
|
|
///月余额记录信息
|
|
String get balanceMonthHistory => '/v2/app/user/balance/month_history';
|
|
|
|
///累计收益
|
|
String get accumulate => '/v2/app/user/income/accumulate';
|
|
|
|
///年度月收益
|
|
String get monthIncome => '/v2/app/user/income/month_income';
|
|
|
|
///累计自购收益
|
|
String get selfIncome => '/v2/app/user/income/purchase_accumulate';
|
|
|
|
///累计导购收益
|
|
String get guideIncome => '/v2/app/user/income/guide_accumulate';
|
|
|
|
///累计团队收益
|
|
String get teamIncome => '/v2/app/user/income/team_income';
|
|
|
|
///累计推荐收益
|
|
String get recommandIncome => '/v2/app/user/income/recommend_income';
|
|
|
|
///累计平台奖励
|
|
String get platformIncome => '/v2/app/user/income/reward_income';
|
|
|
|
///月度日收益
|
|
///
|
|
///包含`自购收益`和`导购收益`
|
|
String get monthDetail => '/v2/app/user/income/day_income';
|
|
}
|