lidongdong
2024-09-18 1da7a482b7389361d273fa7742056fa208923ff5
花城 测试街道后台模块接口
2个文件已修改
13 ■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/api/StreetBigScreenApi.java 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/resources/mapper/StreetBigScreenMapper.xml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/api/StreetBigScreenApi.java
@@ -24,7 +24,7 @@
    @GetMapping("/getCommunityId")
    public R getCommunityId(@RequestParam("streetId") String streetId)
    {
        return R.ok(streetBigScreenService.getCommunityId(streetId));
        return streetBigScreenService.getCommunityId(streetId);
    }
@@ -35,7 +35,7 @@
                         @RequestParam(value = "starTime", required = false)String starTime,
                         @RequestParam(value = "endTime", required = false)String endTime)
    {
        return R.ok(streetBigScreenService.getCoreData(streetId,communityId,type,starTime,endTime));
        return streetBigScreenService.getCoreData(streetId,communityId,type,starTime,endTime);
    }
    @GetMapping("/getThreeNum")
@@ -45,7 +45,7 @@
                         @RequestParam(value = "starTime", required = false)String starTime,
                         @RequestParam(value = "endTime", required = false)String endTime)
    {
        return R.ok(streetBigScreenService.getThreeNum(streetId,communityId,type,starTime,endTime));
        return streetBigScreenService.getThreeNum(streetId,communityId,type,starTime,endTime);
    }
@@ -57,7 +57,7 @@
                                   @RequestParam(value = "starTime", required = false)String starTime,
                                   @RequestParam(value = "endTime", required = false)String endTime)
    {
        return R.ok(streetBigScreenService.getDoubleRegistration(streetId,communityId,type,starTime,endTime));
        return streetBigScreenService.getDoubleRegistration(streetId,communityId,type,starTime,endTime);
    }
    @GetMapping("/getPhotoMicroWish")
@@ -67,7 +67,7 @@
                               @RequestParam(value = "starTime", required = false)String starTime,
                               @RequestParam(value = "endTime", required = false)String endTime)
    {
        return R.ok(streetBigScreenService.getPhotoMicroWish(streetId,communityId,type,starTime,endTime));
        return streetBigScreenService.getPhotoMicroWish(streetId,communityId,type,starTime,endTime);
    }
@@ -78,7 +78,7 @@
                        @RequestParam(value = "starTime", required = false)String starTime,
                        @RequestParam(value = "endTime", required = false)String endTime)
    {
        return R.ok(streetBigScreenService.getAllData(streetId,communityId,type,starTime,endTime));
        return streetBigScreenService.getAllData(streetId,communityId,type,starTime,endTime);
    }
}
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/resources/mapper/StreetBigScreenMapper.xml
@@ -159,6 +159,7 @@
        service_time is not null and
          task_id in (
              select id from new_fight_need_problem_inventory where
                1=1
                <if test=" communityId !=null and communityId != '' ">
                    and community_id in = #{communityId}
                </if>