#
Junjie
2024-06-12 f16eb5176c76299fa69a5245c206f32abe6bc646
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);
 
}