| | |
| | | import * as enterpriseEmployee from './enterpriseEmployee'; |
| | | import * as user from './user'; |
| | | import * as dictionary from './dictionary'; |
| | | import * as taskUser from './taskUser'; |
| | | import * as auth from './auth'; |
| | | import * as taskUser from './taskUser'; |
| | | import * as task from './task'; |
| | |
| | | enterpriseEmployee, |
| | | user, |
| | | dictionary, |
| | | taskUser, |
| | | auth, |
| | | taskUser, |
| | | task, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 查询验收任务分页列表 POST /api/flexjob/task/getCheckReceiveTaskInfos */ |
| | | export async function getCheckReceiveTaskInfos( |
| | | body: API.GetCheckReceiveTaskInfosQuery, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.GetCheckReceiveTaskInfosQueryResult>( |
| | | '/api/flexjob/task/getCheckReceiveTaskInfos', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json-patch+json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** 我的报名分页列表 POST /api/flexjob/task/getPersonalApplyTaskInfos */ |
| | | export async function getPersonalApplyTaskInfos( |
| | | body: API.GetPersonalApplyTaskInfosQuery, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 查询验收分页列表 POST /api/flexjob/taskUser/getCheckReceiveTaskUserInfos */ |
| | | export async function getCheckReceiveTaskUserInfos( |
| | | body: API.GetCheckReceiveTaskUserInfosQuery, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.GetCheckReceiveTaskUserInfosQueryResult>( |
| | | '/api/flexjob/taskUser/getCheckReceiveTaskUserInfos', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json-patch+json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** B端查询应聘报名分页列表信息 POST /api/flexjob/taskUser/getTaskUsers */ |
| | | export async function getTaskUsers(body: API.GetTaskUsersQuery, options?: API.RequestConfig) { |
| | | return request<API.GetTaskUsersQueryResult>('/api/flexjob/taskUser/getTaskUsers', { |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetCheckReceiveTaskInfosQueryResult { |
| | | interface FriendlyResultGetCheckReceiveTaskUserInfosQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetCheckReceiveTaskInfosQueryResult; |
| | | data?: GetCheckReceiveTaskUserInfosQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | |
| | | arrangeStatus?: EnumTaskUserArrangeStatus; |
| | | } |
| | | |
| | | interface GetCheckReceiveTaskInfosQuery { |
| | | interface GetCheckReceiveTaskUserInfosQuery { |
| | | /** 任务Id */ |
| | | taskInfoId?: string; |
| | | /** 关键字 */ |
| | | keywords?: string; |
| | | /** 验收日期-最早时间 */ |
| | |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | | interface GetCheckReceiveTaskInfosQueryResult { |
| | | interface GetCheckReceiveTaskUserInfosQueryResult { |
| | | pageModel?: PagedListQueryResultPageModel; |
| | | /** 数据 */ |
| | | data?: GetCheckReceiveTaskInfosQueryResultItem[]; |
| | | data?: GetCheckReceiveTaskUserInfosQueryResultItem[]; |
| | | } |
| | | |
| | | interface GetCheckReceiveTaskInfosQueryResultItem { |
| | | interface GetCheckReceiveTaskUserInfosQueryResultItem { |
| | | /** 任务Id */ |
| | | id?: string; |
| | | /** 任务名称 */ |
| | | name?: string; |
| | | taskName?: string; |
| | | /** 任务开始时间 */ |
| | | beginTime?: string; |
| | | /** 任务结束时间 */ |
| | | endTime?: string; |
| | | /** 任务地点名称 */ |
| | | addressName?: string; |
| | | /** 姓名 */ |
| | | name?: string; |
| | | /** 身份证号 */ |
| | | identity?: string; |
| | | /** 生日 */ |
| | | birthday?: string; |
| | | /** 年龄 */ |
| | | age?: number; |
| | | /** 手机号 */ |
| | | contactPhoneNumber?: string; |
| | | /** 提交时间 */ |
| | | lastSubmitTime?: string; |
| | | checkReceiveStatus?: EnumTaskCheckReceiveStatus; |
| | | } |
| | | |
| | |
| | | recommendStatus?: EnumTaskRecommendStatus; |
| | | /** 创建时间 */ |
| | | createdTime?: string; |
| | | hireStatus?: EnumTaskUserHireStatus; |
| | | } |
| | | |
| | | interface GetTaskInfosQueryResultObjectData { |