package com.dy.pipIrrTemp.delRepeatStClientAmountDay; 
 | 
  
 | 
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: 2025/7/30 9:03 
 | 
 * @Description 
 | 
 */ 
 | 
@Slf4j 
 | 
@RestController 
 | 
@RequestMapping(path = "delRepeatStClientAmountDay") 
 | 
public class DelRepeatStClientAmountDayCtrl { 
 | 
    private DelRepeatStClientAmountDaySv sv ; 
 | 
  
 | 
    @Autowired 
 | 
    private void setSv(DelRepeatStClientAmountDaySv sv) { 
 | 
        this.sv = sv; 
 | 
    } 
 | 
  
 | 
    /** 
 | 
     * 删除一些漏损统计 
 | 
     * @return 
 | 
     */ 
 | 
    @GetMapping(path = "deleteSome") 
 | 
    @SsoAop() 
 | 
    public BaseResponse<Boolean> deleteSomeStatisticClientDayAmount(){ 
 | 
        this.sv.delStClientAmountDay() ; 
 | 
        return BaseResponseUtils.buildSuccess(true); 
 | 
    } 
 | 
} 
 |