| | |
| | | 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; |
| | |
| | | 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(); |
| | | } |
| | | } |