智慧保安后台管理项目备份
tangzy
2021-08-18 55ec2fb38d9beaf5bbd969082db870d1204bda49
1.统计接口调整
1 files modified
21 ■■■■ changed files
src/main/java/org/springblade/modules/information/controller/InformationController.java 21 ●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/information/controller/InformationController.java
@@ -676,6 +676,7 @@
    /**
     * 统计用户资格异常的数量
     *
     * @return
     */
    @PostMapping("/selectExtypeUser")
@@ -835,8 +836,8 @@
     * 公司运营情况进入图表
     */
    @PostMapping("/selectTb")
    public R selectTb(String jurisdiction,String enterpriseName,Integer current,Integer size) {
        List<Map<Object, Object>> list = informationService.selectTb(jurisdiction, enterpriseName,current,size);
    public R selectTb(String jurisdiction, String enterpriseName, Integer current, Integer size) {
        List<Map<Object, Object>> list = informationService.selectTb(jurisdiction, enterpriseName, current, size);
        return R.data(list);
    }
@@ -844,8 +845,8 @@
     * 公司经济情况进入图表
     */
    @PostMapping("/selectJj")
    public R selectJj(String jurisdiction,String enterpriseName,Integer current,Integer size) {
        List<Map<Object, Object>> list = informationService.selectJj(jurisdiction, enterpriseName,current,size);
    public R selectJj(String jurisdiction, String enterpriseName, Integer current, Integer size) {
        List<Map<Object, Object>> list = informationService.selectJj(jurisdiction, enterpriseName, current, size);
        return R.data(list);
    }
@@ -862,23 +863,23 @@
     * 保安员详情
     */
    @PostMapping("/selectUIn")
    public R selectUIn(String deptid,String name,String hold,String photo,String examinationtype,String dispatch,String soil) {
        List<Map<Object, Object>> list = informationService.selectUIn(deptid, name, hold, photo, examinationtype, dispatch,soil);
    public R selectUIn(String deptid, String name, String hold, String photo, String examinationtype, String dispatch, String soil) {
        List<Map<Object, Object>> list = informationService.selectUIn(deptid, name, hold, photo, examinationtype, dispatch, soil);
        return R.data(list);
    }
    /**
     *     业务统计明细
     * 业务统计明细
     */
    @PostMapping("/selectDis")
    public R selectDis(String jurisdiction,String deptid,String fid,Integer current,Integer size) {
        List<Map<Object, Object>> list = informationService.selectDis(jurisdiction,deptid,fid,current,size);
    public R selectDis(String jurisdiction, String deptid, String fid, Integer current, Integer size) {
        List<Map<Object, Object>> list = informationService.selectDis(jurisdiction, deptid, fid, current, size);
        return R.data(list);
    }
    /**
     *     服务单位下拉
     * 服务单位下拉
     */
    @PostMapping("/selectFw")
    public R selectFw() {