| | |
| | | import com.ycl.domain.form.ProjectProgressStatisticsForm; |
| | | import com.ycl.service.IndexHomeService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | /** |
| | | * nongtou-project-java |
| | |
| | | * 项目进度统计 |
| | | * @return |
| | | */ |
| | | Result projectTaskStatus(ProjectProgressStatisticsForm form){ |
| | | @PostMapping("/taskStatus") |
| | | Result projectTaskStatus(@RequestBody ProjectProgressStatisticsForm form){ |
| | | return indexHomeService.projectTaskStatus(form); |
| | | } |
| | | |
| | |
| | | * 项目推进卡点 |
| | | * @return |
| | | */ |
| | | @GetMapping("/getProjectAdvanceCheckPoint") |
| | | Result projectAdvanceCheckPoint(){ |
| | | return indexHomeService.projectAdvanceCheckPoint(); |
| | | } |
| | | |
| | | @GetMapping("/getSelect") |
| | | Result getProjectSelectList(){ |
| | | return indexHomeService.getProjectSelectList(); |
| | | } |
| | | } |