package com.citygis.web.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.citygis.web.domain.*; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** *

* Mapper 接口 *

* * @author citygis * @since 2025-01-09 */ @Mapper public interface TabSystemMsgMapper extends BaseMapper { List getTabAccessTableMsgList(); List getExchangeCount(String dateTime); List getJkcloudCount(); List getUrlDayCount(); List getTopicCountYesterday(); List getNew(); Integer insertTabSystemMsg(TabSystemMsg tabSystemMsg); }