Hotfix for exception linked to selectOne()

pull/8523/head
Qiuyi LI 2025-05-21 17:08:53 +02:00
parent 67b1a94360
commit 62a12e4575
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ public interface PlatformOrderMapper extends BaseMapper<PlatformOrder> {
@Param("start") String startDate, @Param("end") String endDate, @Param("start") String startDate, @Param("end") String endDate,
@Param("order") String order, @Param("column") String column, @Param("order") String order, @Param("column") String column,
@Param("offset") Integer offset, @Param("size") Integer pageSize); @Param("offset") Integer offset, @Param("size") Integer pageSize);
void selectBatchIdsForUpdate(@Param("ids") List<String> orderIds); List<PlatformOrder> selectBatchIdsForUpdate(@Param("ids") List<String> orderIds);
@MapKey("id") @MapKey("id")
Map<String, PlatformOrder> selectBatchUninvoicedIdsForUpdate(@Param("ids") List<String> orderIds); Map<String, PlatformOrder> selectBatchUninvoicedIdsForUpdate(@Param("ids") List<String> orderIds);