package com.welampiot.dao; import com.welampiot.dto.TrafficLightLogDTO; import com.welampiot.vo.TrafficLightLogVO; import org.apache.ibatis.annotations.Param; import java.util.List; public interface TrafficLightLogDao { List getTrafficLightLogListByLogVO(TrafficLightLogVO trafficLightLogVO); Integer getTrafficLightLogTotalByLogVO(TrafficLightLogVO trafficLightLogVO); void delTrafficLightLogDataById(@Param("devId") Integer devId); }