package cn.lihu.jh.module.ecg.service.callingscreen; import cn.lihu.jh.module.ecg.dal.dataobject.queue.QueueDO; import java.util.List; import java.util.Map; /** * 叫号屏 Service 接口 * * @author 芋道源码 */ public interface CallingScreenService { void setBigScreenConfig(BigScreenConfig bigScreenConfig); Map> getDisplayColInfo(); Map> getBigScreenPatient(); List getRoomCheckRelatedPatient(String ip, Long roomId); List getRoomInstallRelatedPatient(String ip, Long roomId); }