分销修改
This commit is contained in:
@@ -34,12 +34,12 @@ public class MkDistributionWithdrawFlowServiceImpl extends ServiceImpl<MkDistrib
|
||||
}
|
||||
|
||||
@Override
|
||||
public Page<MkDistributionWithdrawFlow> withdrawPageInfo(Long shopId, Long userId, LocalDateTime startTime, LocalDateTime endTime, String key) {
|
||||
public Page<MkDistributionWithdrawFlow> withdrawPageInfo(Long userId, LocalDateTime startTime, LocalDateTime endTime, String key) {
|
||||
QueryWrapper queryWrapper = new MyQueryWrapper()
|
||||
.selectAll(MkDistributionWithdrawFlow.class)
|
||||
.leftJoin(UserInfo.class).on(UserInfo::getId, MkDistributionWithdrawFlow::getUserId)
|
||||
.select(UserInfo::getNickName, UserInfo::getPhone)
|
||||
.eq(MkDistributionWithdrawFlow::getShopId, shopId).eq(MkDistributionWithdrawFlow::getUserId, userId)
|
||||
.eq(MkDistributionWithdrawFlow::getUserId, userId)
|
||||
.ge(MkDistributionWithdrawFlow::getCreateTime, startTime)
|
||||
.le(MkDistributionWithdrawFlow::getCreateTime, endTime);
|
||||
if (StrUtil.isNotBlank(key)){
|
||||
|
||||
Reference in New Issue
Block a user