|  |  |  | 
|---|
|  |  |  | // @ts-ignore | 
|---|
|  |  |  | import { request } from '@/utils/request'; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 根据用户获取期待的工作 GET /api/UserResume/GetResumeExpectationJob */ | 
|---|
|  |  |  | export async function getResumeExpectationJob(options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<API.UserResumeExpectationJobOutput>('/api/UserResume/GetResumeExpectationJob', { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 根据用户获取简历 GET /api/UserResume/GetUserResume */ | 
|---|
|  |  |  | export async function getUserResume(options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<API.MyResumeOutput>('/api/UserResume/GetUserResume', { | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 根据用户获取简历基础信息 GET /api/UserResume/GetUserResumeBaseInfo */ | 
|---|
|  |  |  | export async function getUserResumeBaseInfo(options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<API.UserResumeBaseInfoOutput>('/api/UserResume/GetUserResumeBaseInfo', { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 根据认证id获取认证详情 GET /api/UserResume/GetUserResumeCertificateDetailById */ | 
|---|
|  |  |  | export async function getUserResumeCertificateDetailById( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|