| | |
| | | |
| | | /** 校验批量创建认证用户数据 POST /api/User/CheckBatchCreateCompanyUserData */ |
| | | export async function checkBatchCreateCompanyUserData( |
| | | body: API.CheckBatchCreateCompanyUserInput[], |
| | | body: API.CheckBatchCreateCompanyUserDataInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.CheckBatchCreateCompanyUserResult[]>( |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取平台银行账户信息 GET /api/User/GetPlatIncomeRechargeAccount */ |
| | | export async function getPlatIncomeRechargeAccount(options?: API.RequestConfig) { |
| | | return request<API.GetPlatIncomeRechargeAccountOutput>('/api/User/GetPlatIncomeRechargeAccount', { |
| | | method: 'GET', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取平台开票信息 GET /api/User/GetPlatInvoiceAccount */ |
| | | export async function getPlatInvoiceAccount(options?: API.RequestConfig) { |
| | | return request<API.GetPlatInvoiceAccountOutput>('/api/User/GetPlatInvoiceAccount', { |
| | | method: 'GET', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取平台用户详情 GET /api/User/GetPlatUserAttestationInfo */ |
| | | export async function getPlatUserAttestationInfo( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 GET /api/User/GetUserBaseEnterpriseInfoThridpart */ |
| | | export async function getUserBaseEnterpriseInfoThridpart( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APIgetUserBaseEnterpriseInfoThridpartParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.GetUserBaseEnterpriseInfoOutput>( |
| | | '/api/User/GetUserBaseEnterpriseInfoThridpart', |
| | | { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** 获取用户证书申请状态 GET /api/User/GetUserBestSignUserRegStatus */ |
| | | export async function getUserBestSignUserRegStatus(options?: API.RequestConfig) { |
| | | return request<number>('/api/User/GetUserBestSignUserRegStatus', { |