huminmin
3 天以前 b46d3fcc37e5eb76e77e5b7f1c0e7383af237d30
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,
    });
};