| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.dispatcher.vo.DispatcherVO; |
| | | import org.springblade.modules.information.entity.Information; |
| | | import org.springblade.modules.information.excel.ExportInformationExcel; |
| | | import org.springblade.modules.information.excel.ExportInformationSecurityStatistics; |
| | | import org.springblade.modules.information.vo.InformationStatisticsVO; |
| | | import org.springblade.modules.information.vo.InformationVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | * @return |
| | | */ |
| | | Integer selectInformationUnitJnsbNumCount(@Param("dept")Dept dept); |
| | | |
| | | /** |
| | | * 查询部门信息 |
| | | * @param departmentid |
| | | * @return |
| | | */ |
| | | List<Dept> getDeptChildrens(String departmentid); |
| | | |
| | | /** |
| | | * 保安员统计 |
| | | * @param jurisdiction 辖区id |
| | | * @param deptid 部门名称 |
| | | * @param stats 公司类型 |
| | | * @param startTime 企业注册时间 |
| | | * @param endTime 企业注册时间 |
| | | * @return |
| | | */ |
| | | List<ExportInformationSecurityStatistics> exportSecurityStatisInfo(String jurisdiction, String deptid, String stats, String startTime, String endTime); |
| | | |
| | | /** |
| | | * 业务情况统计 |
| | | * @param jurisdiction 辖区id |
| | | * @param deptid 部门名称 |
| | | * @param stats 公司类型 |
| | | * @param startTime 企业注册时间 |
| | | * @param endTime 企业注册时间 |
| | | * @return |
| | | */ |
| | | List<ExportInformationExcel> exportBusinessStatis(String jurisdiction, String deptid, String stats, String startTime, String endTime); |
| | | } |