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

37 lines
691 B
TypeScript
Raw Normal View History

2025-07-31 23:42:12 +08:00
import { get, post } from "@/utils/request";
/**
*
*/
export const xkXcFindPageApi = async (params: any) => {
return await get("/api/xkXc/findPage", params);
};
/**
* /
*/
export const xkXcSaveApi = async (params: any) => {
return await post("/api/xkXc/save", params);
};
/**
*
*/
export const xkXcLogicDeleteApi = async (params: any) => {
return await post("/api/xkXc/logicDelete", params);
};
/**
* id查询
*/
export const xkXcFindByIdApi = async (params: any) => {
return await get("/api/xkXc/findById", params);
};
/**
*
*/
export const xkXcFindAllApi = async () => {
return await get("/api/xkXc/findAll");
};