import request from '../index' const prefix = 'noiseConfig' // 查询设备列表 分页 export function getInstructionListPage(data: any) { return request({ url: `${prefix}/noiseConfig/list`, method: 'post', params: data }) } // 下发 export function setInstruction(data: any) { return request({ url: `${prefix}/noiseConfig/config`, method: 'post', data, }) }