gaoluyang
2026-05-21 7354f8e5dbb2a3e0612aebf94ad92513a418ea2c
1
2
3
4
5
6
7
8
9
10
import request from "@/utils/request";
 
// 查询库存预警台账列表
export const getStockWarningLedgerPage = (params) => {
  return request({
    url: "/customStorageWarning/pageList",
    method: "get",
    params,
  });
};