#
gtsxc
2025-05-19 89a94a91bd97e1e47fba93c762b4e53a5830b760
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);
 
}