feat: 修改代码结构
This commit is contained in:
@@ -32,11 +32,17 @@ export async function queryUserAffiliateList(
|
||||
}
|
||||
|
||||
/** Query User Balance Log GET /v1/public/user/balance_log */
|
||||
export async function queryUserBalanceLog(options?: { [key: string]: any }) {
|
||||
export async function queryUserBalanceLog(
|
||||
params: API.QueryUserAffiliateListParams,
|
||||
options?: { [key: string]: any },
|
||||
) {
|
||||
return request<API.Response & { data?: API.QueryUserBalanceLogListResponse }>(
|
||||
'/v1/public/user/balance_log',
|
||||
{
|
||||
method: 'GET',
|
||||
params: {
|
||||
...params,
|
||||
},
|
||||
...(options || {}),
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user