| | |
| | | import com.ruoyi.oA.service.OaProjectPhaseTaskService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | @Api(tags = "oA项目阶段任务管理") |
| | | @RestController |
| | | @RequestMapping("/oA/projectPhaseTask") |
| | | @AllArgsConstructor |
| | | public class OaProjectPhaseTaskController { |
| | | @Autowired |
| | | private OaProjectPhaseTaskService oaProjectPhaseTaskService; |
| | | private final OaProjectPhaseTaskService oaProjectPhaseTaskService; |
| | | |
| | | @ApiOperation("新增项目阶段任务") |
| | | @PostMapping("/add") |