import { http } from '@/utils/http' // 获取铭牌信息 export const getInfoByCode = (data) => { return http({ method: 'GET', url: '/material/ma_machine/getInfoByCode', data, }) } // 更新铭牌 export const updateInfo = (data) => { return http({ method: 'PUT', url: '/material/ma_machine', data, }) }