#
Junjie
2024-06-08 8d8b997cd0e6c7ce96e9760a09c636ab9a0e1689
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.LiftProtocol;
 
import java.util.List;
 
public interface LiftService {
 
    List<LiftProtocol> getLiftStatusList(Long hostId);
 
}