| | |
| | | package com.panzhihua.service_community.api; |
| | | |
| | | import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDetailDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.service_community.service.ComMngPopulationService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | |
| | | return R.ok(comMngPopulationService.getScreenGirds(communityId)); |
| | | } |
| | | |
| | | @PostMapping("/getScreenEventDetail") |
| | | public R eventDetail(@RequestBody BigScreenEventDetailDTO eventDetailDTO) { |
| | | return R.ok(comMngPopulationService.getScreenEventDetail(eventDetailDTO)); |
| | | } |
| | | |
| | | |
| | | } |