余额明细处理
This commit is contained in:
parent
fdba1146e5
commit
f40a6b9e8e
|
|
@ -42,7 +42,12 @@ public class MkDistributionAmountFlowServiceImpl extends ServiceImpl<MkDistribut
|
|||
.ge(MkDistributionAmountFlow::getCreateTime, startTime)
|
||||
.select(OrderInfo::getOrderNo);
|
||||
if (StrUtil.isNotBlank(type)) {
|
||||
String[] split = type.split(",");
|
||||
if (split.length != 0) {
|
||||
queryWrapper.in(MkDistributionAmountFlow::getType, split);
|
||||
}else {
|
||||
queryWrapper.eq(MkDistributionAmountFlow::getType, type);
|
||||
}
|
||||
}
|
||||
if (StrUtil.isNotBlank(key)) {
|
||||
queryWrapper.and(and -> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue