|
|
@@ -80,9 +80,14 @@ public class QueryTempCarFeeOrderCmd extends AbstractServiceCmdListener {
|
|
|
}
|
|
|
fee.put("receivedAmount", receivedAmount);
|
|
|
fee.put("oId", GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_oId));
|
|
|
+ JSONObject outParm = new JSONObject();
|
|
|
+ outParm.put("data",fee);
|
|
|
+ outParm.put("code","0");
|
|
|
+ outParm.put("msg","成功");
|
|
|
+ ResponseEntity<String> responseEntitys = new ResponseEntity<>(outParm.toJSONString(), HttpStatus.OK);
|
|
|
fee.putAll(reqJson);
|
|
|
CommonCache.setValue("getTempCarFeeOrder" + fee.getString("oId"), fee.toJSONString(), 24 * 60 * 60);
|
|
|
- cmdDataFlowContext.setResponseEntity(responseEntity);
|
|
|
+ cmdDataFlowContext.setResponseEntity(responseEntitys);
|
|
|
}
|
|
|
|
|
|
private double checkCouponUser(JSONObject paramObj) {
|