| | |
| | | import com.doumee.service.business.PlatformJobService; |
| | | import com.doumee.service.business.YwContractBillService; |
| | | import com.doumee.service.business.YwContractService; |
| | | import com.doumee.service.business.YwPatrolSchemeService; |
| | | import com.doumee.service.system.SystemDictDataService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | @Autowired |
| | | private YwContractService ywContractService; |
| | | |
| | | @Autowired |
| | | private YwPatrolSchemeService ywPatrolSchemeService; |
| | | |
| | | |
| | | @ApiOperation("定时处理合同账单编码") |
| | | @GetMapping("/ywDealContractBillCodeTimer") |
| | |
| | | .replace("APPSECRET","f228b9e3b49a37b881b51431a483c939"); |
| | | String response = HttpsUtil.get(url,false); |
| | | JSONObject json = JSONObject.parseObject(response); |
| | | System.out.println(json); |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation("定时生成今日巡检任务任务") |
| | | @GetMapping("/ywPatrolSchemeTaskTimer") |
| | | public ApiResponse ywPatrolSchemeTaskTimer() { |
| | | ywPatrolSchemeService.timerAuto(); |
| | | return ApiResponse.success("定时生成今日巡检任务任务执行中"); |
| | | } |
| | | |
| | | |