update 部分sql适配

This commit is contained in:
yyb
2026-01-21 16:46:50 +08:00
parent fa7b07817c
commit b5931e81d4
8 changed files with 435 additions and 114 deletions

View File

@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.m2pool.lease.dto.OrderStatusDto;
import com.m2pool.lease.dto.v2.OrderTimeInfoDto;
import com.m2pool.lease.entity.LeaseOrderItem;
import com.m2pool.lease.entity.LeasePayRecordMessage;
import com.m2pool.lease.entity.LeasePaymentRecord;
import com.m2pool.lease.entity.LeaseShopConfig;
import com.m2pool.lease.mq.message.RabbitmqPayAutoReturnInfoMessage;
@@ -88,4 +89,11 @@ public interface LeaseOrderItemMapper extends BaseMapper<LeaseOrderItem> {
*/
long checkShopExistRunningOrderNumbers(@Param("list") List<LeaseShopConfig> list);
/**
* 批量更新订单详情的已实际支付金额
* @param reocrdList
* @return
*/
int updateSettleAmount(@Param("list") List<LeasePayRecordMessage> reocrdList);
}