import request from '@/utils/request' // 查询提升建议列表 export function listSuggestionReply(query) { return request({ url: '/system/suggestionReply/list', method: 'get', params: query }) } // 查询提升建议详细 export function getSuggestionReply(id) { return request({ url: '/system/suggestionReply/' + id, method: 'get' }) } // 新增提升建议 export function addSuggestionReply(data) { return request({ url: '/system/suggestionReply', method: 'post', data: data }) } // 修改提升建议 export function updateSuggestionReply(data) { return request({ url: '/system/suggestionReply', method: 'put', data: data }) } // 删除提升建议 export function delSuggestionReply(id) { return request({ url: '/system/suggestionReply/' + id, method: 'delete' }) }