| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.welampiot.dao;
- import com.welampiot.dto.ManholeDTO;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * ClassName: ManholeDao
- * Package: com.welampiot.dao
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/4/10 - 10:35
- * @Version: v1.0
- */
- public interface ManholeDao {
- Integer getTotalBySectionList(@Param("sectionList") List<ManholeDTO> sectionList);
- Integer getOnlineTotalBySectionList(@Param("sectionList") List<ManholeDTO> sectionList);
- Integer getAlarmTotalBySectionList(@Param("sectionList") List<ManholeDTO> sectionList);
- Integer getNormalTotalBySectionList(@Param("sectionList") List<ManholeDTO> sectionList);
- List<ManholeDTO> getNewTotalBySectionList(@Param("sectionList") List<ManholeDTO> sectionList);
- List<ManholeDTO> getListByDTO(ManholeDTO dto);
- List<ManholeDTO> getHistoryListByDTO(ManholeDTO dto);
- void addManholeDataByDTO(ManholeDTO dto);
- void updateManholeDataByDTO(ManholeDTO dto);
- Integer findByManholeDTO(ManholeDTO dto);
- void deleteManholeDataById(@Param("id") Integer id);
- void deleteManholeLogDataById(@Param("id") Integer id);
- void changeManholeLocationById(ManholeDTO dto);
- }
|