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

26 lines
469 B
TypeScript
Raw Normal View History

2025-11-05 20:29:14 +08:00
import { get } from "@/utils/request";
/**
*
* @param zwlx
*/
export const getZwListByLx = (zwlx: string) => {
return get("/api/zw/getListByLx", { zwlx });
};
/**
* ID查询职务
*/
export const findZwById = (id: string) => {
return get("/api/zw/findById", { id });
};
/**
*
*/
export const findAllZw = () => {
return get("/api/zw/findAll");
};