spring
2026-01-19 9fe3ccfea5f06dd2474480aef7058a8ca907cb29
1
2
3
4
5
6
7
8
9
10
import request from "@/utils/request";
 
// 查询库存预警台账列表
export const getStockWarningLedgerPage = (params) => {
  return request({
    url: "/stockWarningLedger/listPage",
    method: "get",
    params,
  });
};