IApiService.java 243 B

1234567891011121314151617
  1. package com.ruoyi.biz.service;
  2. /**
  3. * 首页统计数据
  4. * @author wukai
  5. */
  6. public interface IApiService {
  7. /**
  8. * 首页统计数据
  9. */
  10. void indexCalc();
  11. /**
  12. * 首页告警数据
  13. */
  14. void indexAlarms();
  15. }