package com.welampiot.service; import com.welampiot.dto.CableInfoLogDTO; import java.util.List; /** * ClassName: CableInfoLogService * Package: com.welampiot.service * Description: * * @Author: zhj_Start * @Create: 2023/4/26 - 15:34 * @Version: v1.0 */ public interface CableInfoLogService { List getCableInfoByDTO(CableInfoLogDTO dto); Integer getTimezoneById(Integer id); List getCableLogListByDTO(CableInfoLogDTO dto); }