| | |
| | | @GetMapping("/testResuslt") |
| | | public R<Object> testResuslt() { |
| | | try { |
| | | //DataPo data = new DataPo("20240913", "20240913", "20240913", 116.64388473935195, 39.884315914604464, 116.64754729082588, 39.887069143903496, 50.0, 25); |
| | | //Object rs = gedbService.test(data); |
| | | DataPo data = new DataPo(); |
| | | data.setEpsg(4548); |
| | | data.setInPath("20241010095328"); |
| | | data.setStartTime(StringHelper.YMDHMS_FORMAT.parse("2024-09-30 00:00:00")); |
| | | |
| | | Object rs = resultService.testResuslt(); |
| | | resultService.process(data); |
| | | |
| | | return success(rs); |
| | | return success("ok"); |
| | | } catch (Exception ex) { |
| | | return fail(ex, null); |
| | | } |