|  |  |  | 
|---|
|  |  |  | this.intakeAmountSv = sv; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private void setSv(DelSomeClientAmountSv sv) { | 
|---|
|  |  |  | this.clientAmountSv = sv; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 删除一些漏损统计 | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | 
|---|
|  |  |  | @GetMapping(path = "deleteSomeStatisticLossAmount") | 
|---|
|  |  |  | @SsoAop() | 
|---|
|  |  |  | public BaseResponse<Boolean> deleteSomeStatisticLossAmount(){ | 
|---|
|  |  |  | this.lossAmountSv.delStLossDay(); | 
|---|
|  |  |  | this.lossAmountSv.delStLossMonth(); | 
|---|
|  |  |  | this.lossAmountSv.delStLossYear(); | 
|---|
|  |  |  | return BaseResponseUtils.buildSuccess(true); | 
|---|
|  |  |  | 
|---|
|  |  |  | @GetMapping(path = "deleteSomeStatisticIntakeAmount") | 
|---|
|  |  |  | @SsoAop() | 
|---|
|  |  |  | public BaseResponse<Boolean> deleteSomeStatisticIntakeAmount(){ | 
|---|
|  |  |  | this.intakeAmountSv.delStIntakeDay(); | 
|---|
|  |  |  | this.intakeAmountSv.delStIntakeMonth(); | 
|---|
|  |  |  | this.intakeAmountSv.delStIntakeYear(); | 
|---|
|  |  |  | return BaseResponseUtils.buildSuccess(true); | 
|---|
|  |  |  | 
|---|
|  |  |  | @GetMapping(path = "deleteSomeStatisticClientAmount") | 
|---|
|  |  |  | @SsoAop() | 
|---|
|  |  |  | public BaseResponse<Boolean> deleteSomeStatisticClientAmount(){ | 
|---|
|  |  |  | this.clientAmountSv.delStClientDay(); | 
|---|
|  |  |  | this.clientAmountSv.delStClientMonth(); | 
|---|
|  |  |  | this.clientAmountSv.delStClientYear(); | 
|---|
|  |  |  | return BaseResponseUtils.buildSuccess(true); | 
|---|