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.
|
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';
|
|
}
|