This commit is contained in:
shuo.wang
2025-06-04 17:49:30 +08:00
parent 022b91b9fb
commit bd47f46015

View File

@@ -54,6 +54,8 @@ import java.time.LocalDate;
import java.util.*; import java.util.*;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import static com.cool.store.utils.poi.DateUtils.SPECIAL_DATE_START;
/** /**
* @Author wxp * @Author wxp
* @Date 2024/3/28 13:48 * @Date 2024/3/28 13:48
@@ -246,6 +248,7 @@ public class LinePayServiceImpl implements LinePayService {
for (LinePayDO linePayDO : list){ for (LinePayDO linePayDO : list){
FranchiseFeePayInfoResponse response = new FranchiseFeePayInfoResponse(); FranchiseFeePayInfoResponse response = new FranchiseFeePayInfoResponse();
BeanUtil.copyProperties(linePayDO, response); BeanUtil.copyProperties(linePayDO, response);
response.setPayTime(DateUtils.parseDateToStr(SPECIAL_DATE_START,linePayDO.getPayTime()));
response.setPartnerName(username); response.setPartnerName(username);
result.add(response); result.add(response);
} }