You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
487 B
8 lines
487 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// -------------产线操作员登记表--------------
|
|
// 获取生产订单工序可用机台
|
|
export const getSORoutingAvailableResource = data => createAPI(`/shoporder/soroutingAvailableResource/getSORoutingAvailableResource`,'post',data)
|
|
|
|
// 修改生产订单工序可用机台
|
|
export const updateSORoutingAvailableResource = data => createAPI(`/shoporder/soroutingAvailableResource/updateSORoutingAvailableResource`,'post',data)
|