bonus-ui/src/api/kitchen/environment.js

15 lines
348 B
JavaScript
Raw Normal View History

2025-06-19 17:53:35 +08:00
import request from '@/utils/request'
// 查询厨房后场设备传感器记录列表
export function getKitchenDeviceSensorRecordListApi(data) {
return request({
url: '/smart-canteen/kitchen_device_sensor_record/list',
method: 'post',
data: data,
params:{
pageNum:data.pageNum,
pageSize:data.pageSize
}
})
2025-06-20 15:47:13 +08:00
}