import request from '@/router/axios' // 保存 export function saveObj(obj) { return request({ url: `/process/processajnotice`, method: 'post', data: obj }) } // 删除 export function delObj(obj) { return request({ url: `/processAjNotice/delByIds`, method: 'post', data: obj }) } // 查询list export function getList(query) { return request({ url: `/processAjNotice/getByPage`, method: 'get', params: query }) } //查询一个 export function getObj(id) { return request({ url: `/process/processajnotice/get/${id}`, method: 'get', }) } // 查询所有 export function findAll(query) { return request({ url: `/processAjNotice/getAll`, method: 'get', params: query }) } export function getOne(query) { return request({ url: `/processAjNotice/getById`, method: 'get', params: query }) }