| | |
| | | import com.ruoyi.oA.service.OaProjectPhaseService; |
| | | 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/projectPhase") |
| | | @AllArgsConstructor |
| | | public class OaProjectPhaseController { |
| | | @Autowired |
| | | private OaProjectPhaseService oaProjectPhaseService; |
| | | private final OaProjectPhaseService oaProjectPhaseService; |
| | | |
| | | @ApiOperation("新增项目阶段") |
| | | @PostMapping("/add") |