package com.welampiot.service.impl; import com.welampiot.dao.LightStripDevLogDao; import com.welampiot.dto.LightStripDevLogDTO; import com.welampiot.service.LightStripDevLogService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * ClassName: LightStripDevLogServiceImpl * Package: com.welampiot.service.impl * Description: * * @Author: zhj_Start * @Create: 2023/5/6 - 14:07 * @Version: v1.0 */ @Service public class LightStripDevLogServiceImpl implements LightStripDevLogService { @Autowired private LightStripDevLogDao lightStripDevLogDao; @Override public List getStatisticsInfoByDTO(LightStripDevLogDTO dto) { return lightStripDevLogDao.getStatisticsInfoByDTO(dto); } @Override public Integer getTimezoneByLightStripDevId(Integer id) { return lightStripDevLogDao.getTimezoneByLightStripDevId(id); } @Override public void deleteLightStripLogDataByStripId(Integer devId) { lightStripDevLogDao.deleteLightStripLogDataByStripId(devId); } }