分销记录字段补齐

This commit is contained in:
张松 2025-10-29 15:41:24 +08:00
parent 82aab9e28e
commit e788503426
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ public class MkDistributionAmountFlowServiceImpl extends ServiceImpl<MkDistribut
.leftJoin(ShopUser.class).on(ShopUser::getId, OrderInfo::getUserId)
.eq(MkDistributionAmountFlow::getShopId, shopId)
.select(OrderInfo::getOrderNo)
.eq(MkDistributionAmountFlow::getType, TableValueConstant.DistributionAmountFlow.Type.OPEN.getCode())
.select(ShopUser::getPhone, ShopUser::getNickName);
if (startTime != null) {
queryWrapper.ge(MkDistributionAmountFlow::getCreateTime, startTime);