Fancy
2024-08-27 5e75ef24e5dd45ae934dc7f03f6c7736ca73c9ff
pms-parent/pms-web-product/src/main/java/com/dy/pmsProduct/taskPlan/DevOpsPlanCtrl.java
@@ -28,7 +28,7 @@
    @PostMapping(path="save")
    @SsoPowerAop(power = "10200001")
    @SsoPowerAop(power = "10200005")
    @Log("保存组装任务计划")
    public BaseResponse<Boolean> save(@RequestBody @Valid PrDevOpsPlan plan){
        int count = sv.save(plan);
@@ -45,7 +45,7 @@
     * @return
     */
    @PostMapping(path="update")
    @SsoPowerAop(power = "10200001")
    @SsoPowerAop(power = "10200005")
    @Log("更新组装任务计划")
    public BaseResponse<Boolean> update(@RequestBody @Valid PrDevOpsPlan plan){
        int count = sv.update(plan);
@@ -57,7 +57,7 @@
    }
    @PostMapping(path="updateStatus")
    @SsoPowerAop(power = "10200001")
    @SsoPowerAop(power = "10200005")
    @Log("更新任务计划状态")
    public BaseResponse<Boolean> updateStatus(@RequestBody PrDevOpsPlan plan){
        int count = sv.updateStatus(plan);
@@ -73,7 +73,7 @@
     * @return
     */
    @GetMapping(path="one")
    @SsoPowerAop(power = "10200000")
    @SsoPowerAop(power = "10200004")
    @Log("根据ID查询组装任务计划")
    public BaseResponse<PrDevOpsPlan> one(Long id){
        PrDevOpsPlan plan=sv.selectById(id);
@@ -86,7 +86,7 @@
     * @return
     */
    @PostMapping(path="some")
    @SsoPowerAop(power = "10200000")
    @SsoPowerAop(power = "10200004")
    @Log("分页查询组装任务计划")
    public BaseResponse<QueryResultVo<List<PrDevOpsPlan>>> some(@RequestBody QueryVo vo){
        QueryResultVo<List<PrDevOpsPlan>> list = sv.selectSome(vo) ;