import request from "@/utils/request.js"; // 分页查询库存记录列表 export const getStockInventoryListPage = (params) => { return request({ url: "/stockInventory/pagestockInventory", method: "get", params, }); }; // 创建库存记录 export const createStockInventory = (params) => { return request({ url: "/stockInventory/addstockInventory", method: "post", data: params, }); }; // 减少库存记录 export const subtractStockInventory = (params) => { return request({ url: "/stockInventory/subtractStockInventory", method: "post", data: params, }); };