package com.xunmei.iot.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xunmei.iot.vo.board.IotBoardOverviewItemVo; import org.apache.ibatis.annotations.Mapper; @Mapper public interface IotBoardMapper extends BaseMapper { IotBoardOverviewItemVo device(String orgPath); IotBoardOverviewItemVo subsystem(String orgPath); IotBoardOverviewItemVo sensor(String orgPath); IotBoardOverviewItemVo videoInterity(String orgPath); IotBoardOverviewItemVo videoDays(String orgPath); IotBoardOverviewItemVo videoQuality(String orgPath); IotBoardOverviewItemVo dvrDisk(String orgPath); }