#
Junjie
2024-04-18 7d0fa32916206e65f95ebec9b4cb4989fc500c0d
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.wcs.rcs.service;
 
import com.zy.asrs.wcs.rcs.model.protocol.ShuttleProtocol;
 
import java.util.List;
 
public interface ShuttleService {
 
    List<ShuttleProtocol> getShuttleStatusList(Long hostId);
 
}