2026-04-23 0005d49a697ce934c6fc2a61ecb75d881b9a76f2
src/main/java/com/ruoyi/oA/controller/OaProjectPhaseController.java
@@ -5,15 +5,15 @@
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")