|
@@ -142,6 +142,7 @@ public class MerchantAuthServiceImpl extends ServiceImpl<MerchantAuthMapper, Mer
|
|
|
Page<MerchantAuth> page = this.lambdaQuery()
|
|
|
.like(StringUtils.notEmpty(param.getStoreName()), MerchantAuth::getStoreName, param.getStoreName())
|
|
|
.eq(StringUtils.notEmpty(userId),MerchantAuth::getApplicant,userId)
|
|
|
+ .orderByDesc(MerchantAuth::getReviewStatus)
|
|
|
.orderByAsc(MerchantAuth::getReviewTime).page(DatabaseContextHolder.page(param.getPaging()));
|
|
|
return DatabaseContextHolder.pagination(page, MerchantAuthCopier.INSTANCE::copying);
|
|
|
}
|