This commit is contained in:
jiask 2025-12-04 15:33:51 +08:00
parent 433d76db55
commit ae051e6556
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ public class OrderInfoMobileBusinessImpl implements OrderInfoMobileBusiness {
try{ try{
map = new ObjectMapper().readValue(modelValue, new TypeReference<Map<String,Object>>(){}); map = new ObjectMapper().readValue(modelValue, new TypeReference<Map<String,Object>>(){});
if(map!=null){ if(map!=null){
orderInfoVO.setReserveRefundDeadline((String) map.get("reserveRefundDeadline")); orderInfoVO.setReserveRefundDeadline(map.get("reserveRefundDeadline")+"");
} }
}catch (Exception e){ }catch (Exception e){
e.printStackTrace(); e.printStackTrace();