package com.welampiot.dao; import com.welampiot.dto.LampPoleAlarmLogDTO; import org.apache.ibatis.annotations.Param; import java.util.List; public interface LampPoleAlarmLogDao { List getListByLampPoleIdList(@Param("lampPoleIdList") List lampPoleIdList); Integer getCountByLampPoleIdList(@Param("lampPoleIdList") List lampPoleIdList); Integer getOneData(Integer lampPoleId); List getList(Integer lampPoleId); }