zhubaomin
2025-04-07 1a2b07f01ba4616fd9e894dddf474b56d020158c
pipIrr-platform/pipIrr-web/pipIrr-web-temp/src/main/java/com/dy/pipIrrTemp/test/Test4TempCtrl.java
New file
@@ -0,0 +1,41 @@
package com.dy.pipIrrTemp.test;
import com.dy.common.aop.SsoAop;
import com.dy.common.webUtil.BaseResponse;
import com.dy.common.webUtil.BaseResponseUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
 * @Author: liurunyu
 * @Date: 2024/12/17 8:52
 * @Description
 */
@Slf4j
@RestController
@RequestMapping(path = "test")
@SuppressWarnings("unchecked")//java版本越高,对泛型约束越严,所以配置SuppressWarnings("unchecked")
public class Test4TempCtrl {
    private Test4TempSv sv;
    @Autowired
    private void setSv(Test4TempSv sv) {
        this.sv = sv;
    }
    /**
     * 删除一些漏损统计
     * @return
     */
    @GetMapping(path = "doSome")
    @SsoAop()
    public BaseResponse<Boolean> doSome(){
        this.sv.doSome();
        return BaseResponseUtils.buildSuccess(true);
    }
}