wupengfei
4 天以前 5b0401fea3c339aa45feb0d165f36b1b7a76fdaf
src/services/api/User.ts
@@ -34,7 +34,7 @@
/** 批量创建认证用户 POST /api/User/BatchCreateCompanyUser */
export async function batchCreateCompanyUser(
  body: API.AddCertifiedUserInput[],
  body: API.BatchCreateCompanyUserV3Input,
  options?: API.RequestConfig
) {
  return request<string[]>('/api/User/BatchCreateCompanyUser', {
@@ -784,6 +784,21 @@
  });
}
/** 设置企业合作协议 POST /api/User/SetUserEnterpiseCooperationUrl */
export async function setUserEnterpiseCooperationUrl(
  body: API.SetUserEnterpiseCooperationUrlInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/User/SetUserEnterpiseCooperationUrl', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 取关用户 POST /api/User/UnFollowUser */
export async function unFollowUser(body: API.UnFollowUserInput, options?: API.RequestConfig) {
  return request<number>('/api/User/UnFollowUser', {