|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.coin.business.service.impl; |
|
|
|
|
|
|
|
import com.coin.common.core.domain.BaseEntity; |
|
|
|
import com.coin.common.utils.StringUtils; |
|
|
|
import cn.hutool.core.bean.BeanUtil; |
|
|
|
import com.coin.common.core.page.TableDataInfo; |
|
|
@ -75,6 +76,7 @@ public class DealReceiveServiceImpl implements IDealReceiveService { |
|
|
|
lqw.like(StringUtils.isNotBlank(bo.getRemark()), DealReceive::getRemark, bo.getRemark()); |
|
|
|
lqw.eq(StringUtils.isNotBlank(bo.getStatus()), DealReceive::getStatus, bo.getStatus()); |
|
|
|
lqw.eq(bo.getCreateTime() != null, DealReceive::getCreateTime, bo.getCreateTime()); |
|
|
|
lqw.orderByDesc(BaseEntity::getCreateTime); |
|
|
|
return lqw; |
|
|
|
} |
|
|
|
|
|
|
|