spring
7 天以前 e7a741e7d234a714908e557611ef292782603fd9
src/api/inventoryManagement/stockInventory.js
@@ -41,3 +41,22 @@
        params,
    });
};
// 冻结库存记录
export const frozenStockInventory = (params) => {
    return request({
        url: "/stockInventory/frozenStock",
        method: "post",
        data: params,
    });
};
// 解冻库存记录
export const thawStockInventory = (params) => {
    return request({
        url: "/stockInventory/thawStock",
        method: "post",
        data: params,
    });
};