zhengyiming
昨天 6fc60fcdccd4c99e43be482ecf3757108e833c34
src/services/api/User.ts
@@ -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', {