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