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

30 lines
648 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
}
})
}
// 查询留样柜操作记录列表
export function getKitchenSampleCabinetRecordListApi(data) {
return request({
url: '/smart-canteen/kitchen_sample_cabinet_record/list',
method: 'post',
data: data,
params:{
pageNum:data.pageNum,
pageSize:data.pageSize
}
})
}