save translated stop time

This commit is contained in:
ZZ 2021-08-18 19:28:02 +08:00
parent 7ccad6acbb
commit f9d731ebda

View File

@ -49,7 +49,7 @@ public class OrderDataLogic implements ServiceLogic {
String gunkey = "gun:".concat(orderData.getPileNo()).concat(orderData.getGunId());
Map<String, Object> cacheGun = REDIS.getCacheMap(gunkey);
cacheGun.put("orderstarttime", null);
cacheGun.put("orderstoptime", orderData.getEndTime());
cacheGun.put("orderstoptime", cacheOrderData.getEndTime());
cacheGun.put("orderkey", null);
REDIS.setCacheMap(gunkey, cacheGun);
String skey = gunkey.concat(".seqhex");