LampInfoLogService.java 349 B

123456789101112
  1. package com.welampiot.service;
  2. import com.welampiot.dto.LampInfoLogDTO;
  3. import com.welampiot.vo.LampLogVO;
  4. import java.util.List;
  5. public interface LampInfoLogService {
  6. Integer deleteByLampId(Integer lampId);
  7. List<LampInfoLogDTO> getListByVO(LampLogVO lampLogVO);
  8. List<LampInfoLogDTO> getDayEleUsedList(Integer type, Integer value);
  9. }