package com.dy.pipIrrTemp.delSome; 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/11 10:50 * @Description */ @Slf4j @RestController @RequestMapping(path = "delSome") @SuppressWarnings("unchecked")//java版本越高,对泛型约束越严,所以配置SuppressWarnings("unchecked") public class DelSomeCtrl { private DelSomeSv sv; @Autowired private void setSv(DelSomeSv sv) { this.sv = sv; } /** * 删除一些漏损统计 * @return */ @GetMapping(path = "deleteSomeStatisticLossAmount") public BaseResponse deleteSomeStatisticLossAmount(){ this.sv.delStLossMonth(); return BaseResponseUtils.buildSuccess(true); } }