hwh
2024-09-06 c4f8cc1f88a83de4784b5fc90496ff79d377e321
Web/src/api/wcs/wcsDevice.ts
@@ -7,6 +7,10 @@
  DetailWcsDevice = '/api/wcsDevice/detail',
  GetWcsPlcPlcIdDropdown = '/api/wcsDevice/WcsPlcPlcIdDropdown',
  GeneratePos = '/api/wcsDevice/GeneratePos',
  ListWcsDevice = '/api/wcsDevice/list',
  GetWcsPackPlcList='/api/wcsDevice/WcsPackPlcList',
  GetWcsPackStationPlcList='/api/wcsDevice/WcsPackStationPlcList',
}
// 增加设备信息
@@ -61,4 +65,23 @@
   method: 'post',
   data: params
   });
export const listWcsDevice = () =>
   request({
   url: Api.ListWcsDevice,
   method: 'get'
   });
export const GetWcsPackPlcList = () =>
   request({
   url: Api.GetWcsPackPlcList,
   method: 'get'
});
export const GetWcsPackStationPlcList = (params?: any) =>
   request({
   url: Api.GetWcsPackStationPlcList,
   method: 'get',
   data: params
});