TabSystemMsgMapper.java 692 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.citygis.web.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.citygis.web.domain.*;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. /**
  7. * <p>
  8. * Mapper 接口
  9. * </p>
  10. *
  11. * @author citygis
  12. * @since 2025-01-09
  13. */
  14. @Mapper
  15. public interface TabSystemMsgMapper extends BaseMapper<TabSystemMsg> {
  16. List<TabAccessTableMsg> getTabAccessTableMsgList();
  17. List<Exchange> getExchangeCount(String dateTime);
  18. List<JkCloudCount> getJkcloudCount();
  19. List<UrlDayCount> getUrlDayCount();
  20. List<TopicCount> getTopicCountYesterday();
  21. List<NewCount> getNew();
  22. Integer insertTabSystemMsg(TabSystemMsg tabSystemMsg);
  23. }