Showing
1 changed file
with
1 additions
and
1 deletions
@@ -330,7 +330,7 @@ public class MerchantOrderPaymentService extends AbstractOrderPaymentService { | @@ -330,7 +330,7 @@ public class MerchantOrderPaymentService extends AbstractOrderPaymentService { | ||
330 | result.put("all", sw.getAmount().add(sw.getLockAmount()).setScale(2).toString()); | 330 | result.put("all", sw.getAmount().add(sw.getLockAmount()).setScale(2).toString()); |
331 | result.put("locked", sw.getLockAmount().setScale(2).toString()); | 331 | result.put("locked", sw.getLockAmount().setScale(2).toString()); |
332 | result.put("avail", sw.getAmount().setScale(2).toString()); | 332 | result.put("avail", sw.getAmount().setScale(2).toString()); |
333 | - result.put("entryTime",(storedSeller==null&&storedSeller.getEnterTime()>0)?"":sdf.format(storedSeller.getEnterTime())); | 333 | + result.put("entryTime",(storedSeller==null&&storedSeller.getEnterTime()>0)?"":sdf.format(1000L*storedSeller.getEnterTime())); |
334 | return new com.yohoufo.common.ApiResponse(200, "查询成功", result); | 334 | return new com.yohoufo.common.ApiResponse(200, "查询成功", result); |
335 | } | 335 | } |
336 | 336 |
-
Please register or login to post a comment