管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-10 825ec729d118064c6c1db063d41cc6eef30802d0
src/main/java/com/lf/server/service/sys/ReportService.java
@@ -1,5 +1,6 @@
package com.lf.server.service.sys;
import com.lf.server.entity.ctrl.CountEntity;
import com.lf.server.entity.sys.ReportEntity;
import com.lf.server.helper.StringHelper;
import com.lf.server.mapper.sys.ReportMapper;
@@ -70,4 +71,19 @@
    public Integer updates(List<ReportEntity> list) {
        return reportMapper.updates(list);
    }
    @Override
    public List<CountEntity> countSizes() {
        return reportMapper.countSizes();
    }
    @Override
    public List<CountEntity> countServices() {
        return reportMapper.countServices();
    }
    @Override
    public List<CountEntity> countOperates() {
        return reportMapper.countOperates();
    }
}