|
@@ -42,8 +42,8 @@ public class SysBatchSignForServiceImpl implements ISysBatchSignForService {
|
|
|
@Autowired(required = false)
|
|
|
@Qualifier("tmsLogisticsStatusDeleteExcutor")
|
|
|
private Executor tmsLogisticsStatusDeleteExcutor;
|
|
|
- //@Value(value = "${ruoyi.clearCachePath}")
|
|
|
- //private String clearCachePath;
|
|
|
+ @Value(value = "${ruoyi.clearCachePath}")
|
|
|
+ private String clearCachePath;
|
|
|
|
|
|
@Autowired
|
|
|
private SysBatchSignForMapper sysBatchSignForMapper;
|
|
@@ -67,8 +67,8 @@ public class SysBatchSignForServiceImpl implements ISysBatchSignForService {
|
|
|
).join();
|
|
|
|
|
|
//清订单列表缓存
|
|
|
- //String result = HttpUtils.sendPost(clearCachePath,"");
|
|
|
- //logger.info("result:::"+result);
|
|
|
+ String result = HttpUtils.sendGet(clearCachePath);
|
|
|
+ logger.info("result:::"+result);
|
|
|
return 1;
|
|
|
}
|
|
|
|