| | |
| | | @RequestMapping(path = "stSome") |
| | | public class StSomeCtrl { |
| | | |
| | | private StClientAmountSv stSomeClientAmountSv; |
| | | private StClientAmountSv stClientAmountSv; |
| | | |
| | | @Autowired |
| | | private void setSv(StClientAmountSv sv) { |
| | | this.stSomeClientAmountSv = sv; |
| | | this.stClientAmountSv = sv; |
| | | } |
| | | |
| | | /////////////////////////////////////////// |
| | |
| | | @GetMapping(path = "transSaveClientAmountDay") |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> transSaveClientAmountDay() throws Exception{ |
| | | this.stSomeClientAmountSv.deleteAllStClientAmountDay(); |
| | | this.stSomeClientAmountSv.transSaveClientAmountDay(); |
| | | this.stClientAmountSv.deleteAllStClientAmountDay(); |
| | | this.stClientAmountSv.transSaveClientAmountDay(); |
| | | return BaseResponseUtils.buildSuccess(true); |
| | | } |
| | | |