|
@@ -1,6 +1,5 @@
|
|
|
package com.fuint.module.clientApi.controller;
|
|
|
|
|
|
-import com.alibaba.fastjson.JSON;
|
|
|
import com.fuint.common.dto.RefundDto;
|
|
|
import com.fuint.common.dto.UserInfo;
|
|
|
import com.fuint.common.dto.UserOrderDto;
|
|
@@ -118,7 +117,7 @@ public class ClientRefundController extends BaseController {
|
|
|
}
|
|
|
refundDto.setAmount(order.getPayAmount());
|
|
|
if (images.size() > 0) {
|
|
|
- refundDto.setImages(JSON.toJSONString(images));
|
|
|
+ refundDto.setImages(String.join(",", images));
|
|
|
}
|
|
|
MtRefund refundInfo = refundService.createRefund(refundDto);
|
|
|
|