import { axios } from '@/utils/request' /** * 查询设备基础信息表 * * @author cxy */ export function EquipmentBaseInfoPage (parameter) { return axios({ url: '/EquipmentBaseInfo/page', method: 'get', params: parameter }) } // 获取班组数据 api/ShiftInfoService/page export function getShiftInfo (parameter) { return axios({ url: '/shiftinfo/page', method: 'get', params: parameter }) } // 新增班次 /shiftinfo/add export function addShiftInfo(data) { return axios({ url: '/shiftinfo/add', method: 'post', data }) } // 编辑班次 /shiftinfo/edit export function editShiftInfo(data) { return axios({ url: '/shiftinfo/edit', method: 'post', data }) }