| | |
| | | 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 javax.annotation.Resource; |
| | | |
| | |
| | | * @author xyh |
| | | * @date 2021/6/15 15:13 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/screen/work") |
| | | public class ScreenWorkApi { |
| | | |
| | |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @GetMapping("/workCount") |
| | | R workCount(@RequestParam("communityId")Long communityId){ |
| | | return screenWorkService.workCount(communityId); |
| | | } |