spring
2026-03-16 bc5bb27f279886b587ad020ea782d1f0c3531cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import request from "@/utils/request";
 
// 耗材入库管理-查询入库记录列表
export const getConsumablesInRecordListPage = (params) => {
    return request({
        url: "/consumablesInRecord/listPage",
        method: "get",
        params,
    });
};
 
export const updateConsumablesInRecord = (id, data) => {
    return request({
        url: "/consumablesInRecord/" + id,
        method: "put",
        data: data,
    });
};
 
export const batchDeleteConsumablesInRecords = (ids) => {
    return request({
        url: "/consumablesInRecord",
        method: "delete",
        data: ids,
    });
};