This commit is contained in:
Lemon
2026-05-26 16:19:35 +08:00
7 changed files with 92150 additions and 3 deletions

View File

@@ -35,5 +35,7 @@ public interface AdapayUnsplitRecordMapper {
List<AdapayUnsplitRecord> queryUnsplitOrders(@Param("startTime") String startTime, @Param("endTime") String endTime);
List<AdapayUnsplitRecord> selectByPaymentIds(@Param("list") List<String> paymentIds);
List<AdapayUnsplitRecordVO> queryList();
}

View File

@@ -32,5 +32,7 @@ public interface AdapayUnsplitRecordService{
List<AdapayUnsplitRecord> queryUnsplitOrders(String startTime, String endTime);
List<AdapayUnsplitRecord> selectByPaymentIds(List<String> paymentIds);
List<AdapayUnsplitRecordVO> queryList();
}

View File

@@ -79,6 +79,14 @@ public class AdapayUnsplitRecordServiceImpl implements AdapayUnsplitRecordServic
return adapayUnsplitRecordMapper.queryUnsplitOrders(startTime, endTime);
}
@Override
public List<AdapayUnsplitRecord> selectByPaymentIds(List<String> paymentIds) {
if (paymentIds == null || paymentIds.isEmpty()) {
return java.util.Collections.emptyList();
}
return adapayUnsplitRecordMapper.selectByPaymentIds(paymentIds);
}
@Override
public List<AdapayUnsplitRecordVO> queryList() {
return adapayUnsplitRecordMapper.queryList();