TabSystemMsgMapper.java 830 B

1234567891011121314151617181920212223242526272829303132333435363738
  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<TabSystemMsg> getStatistics(TabSystemMsg tabSystemMsg);
  17. List<TabSystemMsg> getTabSystemMsgList(TabSystemMsg tabSystemMsg);
  18. List<TabAccessTableMsg> getTabAccessTableMsgList();
  19. List<Exchange> getExchangeCount(String dateTime);
  20. List<JkCloudCount> getJkcloudCount();
  21. List<UrlDayCount> getUrlDayCount();
  22. List<TopicCount> getTopicCountYesterday();
  23. List<NewCount> getNew();
  24. Integer insertTabSystemMsg(TabSystemMsg tabSystemMsg);
  25. }