62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import type { LeaveApplicationVO, LeaveApplicationForm, LeaveApplicationQuery } from './model';
|
|
|
|
import type { ID, IDS } from '#/api/common';
|
|
import type { PageResult } from '#/api/common';
|
|
|
|
import { commonExport } from '#/api/helper';
|
|
import { requestClient } from '#/api/request';
|
|
|
|
/**
|
|
* 查询请假申请列表
|
|
* @param params
|
|
* @returns 请假申请列表
|
|
*/
|
|
export function leaveApplicationList(params?: LeaveApplicationQuery) {
|
|
return requestClient.get<PageResult<LeaveApplicationVO>>('/property/leaveApplication/list', { params });
|
|
}
|
|
|
|
/**
|
|
* 导出请假申请列表
|
|
* @param params
|
|
* @returns 请假申请列表
|
|
*/
|
|
export function leaveApplicationExport(params?: LeaveApplicationQuery) {
|
|
return commonExport('/property/leaveApplication/export', params ?? {});
|
|
}
|
|
|
|
/**
|
|
* 查询请假申请详情
|
|
* @param id id
|
|
* @returns 请假申请详情
|
|
*/
|
|
export function leaveApplicationInfo(id: ID) {
|
|
return requestClient.get<LeaveApplicationVO>(`/property/leaveApplication/${id}`);
|
|
}
|
|
|
|
/**
|
|
* 新增请假申请
|
|
* @param data
|
|
* @returns void
|
|
*/
|
|
export function leaveApplicationAdd(data: LeaveApplicationForm) {
|
|
return requestClient.postWithMsg<void>('/property/leaveApplication', data);
|
|
}
|
|
|
|
/**
|
|
* 更新请假申请
|
|
* @param data
|
|
* @returns void
|
|
*/
|
|
export function leaveApplicationUpdate(data: LeaveApplicationForm) {
|
|
return requestClient.putWithMsg<void>('/property/leaveApplication', data);
|
|
}
|
|
|
|
/**
|
|
* 删除请假申请
|
|
* @param id id
|
|
* @returns void
|
|
*/
|
|
export function leaveApplicationRemove(id: ID | IDS) {
|
|
return requestClient.deleteWithMsg<void>(`/property/leaveApplication/${id}`);
|
|
}
|