spring
2026-03-16 bc5bb27f279886b587ad020ea782d1f0c3531cd5
1
2
3
4
5
6
7
8
9
10
import request from '@/utils/request'
 
// 工序列表分页查询
export function productProcessListPage(query) {
  return request({
    url: '/productProcess/listPage',
    method: 'get',
    params: query
  })
}