chengxiangling
2025-05-12 e1272fc62b4a8fc075ffb7af3d4ee3d11ab495d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import request from '@/utils/request'
 
// 气体管路产能规划列表
export function listGasPlan(query) {
  return request({
    url: '/aps/gasPipelineCapacityPlan/list',
    method: 'get',
    params: query
  })
}
 
// 查询钣金计划管理详细
export function getGasPlanSave(data) {
  return request({
    url: '/aps/gasPipelineCapacityPlan',
    method: 'post',
    data: data
  })
}