#
Junjie
2024-06-08 20c607eaa0d2e8e34ab08306c003da4de4773c2c
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);
 
}