12345678910111213141516171819202122232425262728293031 |
- 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<EmergencyInfoLogDTO> getEmergencyInfoLogListBySectionList(List<Integer> sectionList);
- List<EmergencyInfoLogDTO> getNowEmergencyInfoLogList(EmergencyInfoLogVO vo);
- List<EmergencyInfoLogDTO> getHistoryEmergencyInfoLogList(EmergencyInfoLogVO vo);
- List<EmergencyInfoLogDTO> getNowLogListByLampPoleId(Integer lampPoleId);
- List<EmergencyInfoLogDTO> getHisLogListByLampPoleId(Integer lampPoleId);
- List<EmergencyInfoLogDTO> getEmergencyListByDevNum(String num) throws ParseException;
- List<EmergencyInfoLogDTO> getList(EmergencyInfoLogDTO dto);
- }
|