|
|
@@ -80,7 +80,8 @@ public class WholesaleNoticeController {
|
|
|
.eq(WholesaleNotice::getWholesaleId, wholesaleId)
|
|
|
.like(StringUtil.isNotBlank(platform),WholesaleNotice::getPlatform, platform)
|
|
|
.like(StringUtil.isNotBlank(description),WholesaleNotice::getDescription, description)
|
|
|
- .eq(status != null,WholesaleNotice::getStatus, status));
|
|
|
+ .eq(status != null,WholesaleNotice::getStatus, status)
|
|
|
+ .orderByDesc(WholesaleNotice::getId));
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(page);
|
|
|
}
|
|
|
}
|