zj
2025-10-05 fc68aa452e2fd56441128d1d5a4b32f254c6191d
src/main/java/project/futures/internal/FuturesOrderServiceImpl.java
@@ -558,8 +558,8 @@
      System.out.println(simpleDateFormat.format(new Date()));
   }
   public Map<String, Object> bulidOne(FuturesOrder order) {
      SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd  hh:mm:ss  a", Locale.ENGLISH);
      simpleDateFormat.setTimeZone(TimeZone.getTimeZone("America/New_York"));
      SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
      simpleDateFormat.setTimeZone(TimeZone.getTimeZone("Europe/Berlin"));
      FuturesOrder order_cache = (FuturesOrder) redisHandler.get(FuturesRedisKeys.FUTURES_SUBMITTED_ORDERNO + order.getOrder_no());
      if (order_cache != null) order = order_cache;
      
@@ -577,7 +577,7 @@
      
      DecimalFormat df_symbol = new DecimalFormat(decimals);
      df_symbol.setRoundingMode(RoundingMode.FLOOR);// 向下取整
      TimeZone timeZone = TimeZone.getTimeZone("America/New_York");
      TimeZone timeZone = TimeZone.getTimeZone("Europe/Berlin");
      SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
      sdf.setTimeZone(timeZone);
      DecimalFormat df = new DecimalFormat("#.##");