| | |
| | | // @Transactional |
| | | public AjaxResult ceshicc(String s) { |
| | | |
| | | long start = System.currentTimeMillis(); |
| | | Map<String,Object> map=new HashMap<>(); |
| | | map.put("tjnum", s); |
| | | testMapper.tjUpdateDetatilByVi(map); |
| | | |
| | | long end = System.currentTimeMillis(); |
| | | log.info("同步结束 耗时:{}秒", (end - start) / 1000); |
| | | return AjaxResult.success((end - start) / 1000); |
| | | List<List<?>> tjpled = testMapper.tjplUpdateDetatilByVi(map); |
| | | log.info(tjpled.toString()); |
| | | Integer object = (Integer) map.get("total"); |
| | | return AjaxResult.success(object); |
| | | } |
| | | |
| | | |