liujie
2025-06-09 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/LargeScreenApi.java
@@ -4,6 +4,7 @@
import com.panzhihua.common.model.dtos.community.large.AreaStreetDetail;
import com.panzhihua.common.model.dtos.community.large.AreaStreetDetailResp;
import com.panzhihua.common.model.dtos.community.large.SumAreaStreetResp;
import com.panzhihua.common.model.dtos.partybuilding.QryReportResp;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.ComActDynVO;
import com.panzhihua.common.service.community.CommunityService;
@@ -14,6 +15,8 @@
import org.apache.ibatis.annotations.Param;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@Slf4j
@RestController
@@ -104,6 +107,12 @@
        return R.ok(comStreetService.areaStreetDetail(code, type));
    }
    /**
     *   双报到双服务
     */
    @GetMapping("/qryReport")
    public R<List<QryReportResp>> qryReport(@RequestParam(value = "yearTime",required = false) String yearTime){
        return R.ok(comStreetService.qryReport(yearTime));
    }
}