fix 时间格式问题

This commit is contained in:
shuo.wang
2025-06-23 11:02:41 +08:00
parent ab3218f33c
commit 41589f2ed3

View File

@@ -337,6 +337,7 @@ public class LinePayServiceImpl implements LinePayService {
} }
FranchiseFeePayInfoResponse response = new FranchiseFeePayInfoResponse(); FranchiseFeePayInfoResponse response = new FranchiseFeePayInfoResponse();
BeanUtil.copyProperties(linePay, response); BeanUtil.copyProperties(linePay, response);
response.setPayTime(DateUtils.parseDateToStr(YYYY_MM_DD_HH_MM_SS, linePay.getPayTime()));
return response; return response;
} }