12345678910111213141516171819202122 |
- 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<LightStripDevLogDTO> getStatisticsInfoByDTO(LightStripDevLogDTO dto);
- Integer getTimezoneByLightStripDevId(Integer id);
- void deleteLightStripLogDataByStripId(Integer devId);
- }
|