package com.welampiot.service; import com.welampiot.dto.LightStripDevLogDTO; import java.util.List; /** * ClassName: LightStripDevLogService * Package: com.welampiot.service * Description: * * @Author: zhj_Start * @Create: 2023/5/6 - 14:07 * @Version: v1.0 */ public interface LightStripDevLogService { List getStatisticsInfoByDTO(LightStripDevLogDTO dto); Integer getTimezoneByLightStripDevId(Integer id); void deleteLightStripLogDataByStripId(Integer devId); }