package com.welampiot.service; import com.welampiot.dto.EmergencyInfoLogDTO; import com.welampiot.vo.EmergencyInfoLogVO; import java.text.ParseException; import java.util.List; /** * ClassName: EmergencyInfoLogService * Package: com.welampiot.service * Description: * * @Author: zhj_Start * @Create: 2023/8/10 - 17:09 * @Version: v1.0 */ public interface EmergencyInfoLogService { List getEmergencyInfoLogListBySectionList(List sectionList); List getNowEmergencyInfoLogList(EmergencyInfoLogVO vo); List getHistoryEmergencyInfoLogList(EmergencyInfoLogVO vo); List getNowLogListByLampPoleId(Integer lampPoleId); List getHisLogListByLampPoleId(Integer lampPoleId); List getEmergencyListByDevNum(String num) throws ParseException; List getList(EmergencyInfoLogDTO dto); }