| | |
| | | package com.zy.asrs.service; |
| | | |
| | | import com.zy.asrs.entity.AgvBasDevp; |
| | | import com.zy.asrs.entity.param.CombParam; |
| | | import com.zy.asrs.entity.param.MobileAdjustParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface AgvMobileService { |
| | | |
| | | /** |
| | | * 组托 |
| | | */ |
| | | void comb(CombParam param, Long userId); |
| | | String comb(CombParam param, Long userId); |
| | | |
| | | /** |
| | | * 盘点 |
| | |
| | | |
| | | void packComb(CombParam param, Long userId); |
| | | |
| | | void combBinding(String barcode, String stationCode); |
| | | void combBinding(String barcode, String stationCode, Short containerType); |
| | | |
| | | List<AgvBasDevp> getAgvBasDevpByFloor(int floor); |
| | | |
| | | void pakinEmpty(String devNo, boolean pakin); |
| | | |
| | | void pakoutEmpty(String devNo); |
| | | |
| | | } |