|
|
@ -418,19 +418,19 @@ public class OutRechargeOrderServiceImpl implements OutRechargeOrderService { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (MapUtils.getLong(map, "createTimeS") != null) { |
|
|
|
if (MapUtils.getLong(map, "createTimeS") != null) { |
|
|
|
map.put("createTimeS", DateUtil.date2String(new Date(MapUtils.getLong(map, "createTimeS")), "yyyy-MM-dd HH:mm:ss")); |
|
|
|
map.put("createTimeS", MapUtils.getString(map, "createTimeS")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (MapUtils.getLong(map, "createTimeE") != null) { |
|
|
|
if (MapUtils.getLong(map, "createTimeE") != null) { |
|
|
|
map.put("createTimeE", DateUtil.date2String(new Date(MapUtils.getLong(map, "createTimeE")), "yyyy-MM-dd HH:mm:ss")); |
|
|
|
map.put("createTimeE", MapUtils.getString(map, "createTimeE")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (MapUtils.getLong(map, "payTimeS") != null) { |
|
|
|
if (MapUtils.getLong(map, "payTimeS") != null) { |
|
|
|
map.put("payTimeS", DateUtil.date2String(new Date(MapUtils.getLong(map, "payTimeS")), "yyyy-MM-dd HH:mm:ss")); |
|
|
|
map.put("payTimeS", MapUtils.getString(map, "payTimeS")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (MapUtils.getLong(map, "payTimeE") != null) { |
|
|
|
if (MapUtils.getLong(map, "payTimeE") != null) { |
|
|
|
map.put("payTimeE", DateUtil.date2String(new Date(MapUtils.getLong(map, "payTimeE")), "yyyy-MM-dd HH:mm:ss")); |
|
|
|
map.put("payTimeE", MapUtils.getString(map, "payTimeE")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return outRechargeOrderMapper.selectOrderCount(map); |
|
|
|
return outRechargeOrderMapper.selectOrderCount(map); |
|
|
|