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"); };