/* * @Author: zwq * @Date: 2024-03-27 15:49:55 * @LastEditors: zwq * @LastEditTime: 2024-09-10 14:36:19 * @Description: */ import request from '@/utils/request' // 获得所有工厂产线列表 export function getLineAll() { return request({ url: '/base/production-line/listAll', method: 'get' }) } // 获得产线分页 export function getLinePage(query) { return request({ url: '/base/production-line/page', method: 'get', params: query }) }