zhxy-jsd/src/api/base/kyXcApi.ts

30 lines
628 B
TypeScript
Raw Normal View History

2025-09-12 11:20:21 +08:00
import { get, post } from "@/utils/request";
/**
*
*/
export const kyXcSaveApi = async (params: any) => {
return await post("/api/kyXc/save", params);
};
/**
*
*/
export const getKyXcPageApi = async (params: any) => {
return await get("/api/kyXc/findPage", params);
};
/**
* ID获取课业辅导巡查详情
*/
export const getKyXcByIdApi = async (id: string) => {
return await get(`/api/kyXc/${id}`);
};
/**
*
*/
export const deleteKyXcApi = async (id: string) => {
return await post(`/api/kyXc/delete/${id}`);
};