#
gtsxc
2024-11-18 8f1d32397b1b30f51d641513898d3f36cb0e515d
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);
 
}