文件上传https
This commit is contained in:
parent
026b57ccb7
commit
2b8232fb1f
|
@ -1,6 +1,7 @@
|
||||||
package com.cultural.heritage.model.dto.article;
|
package com.cultural.heritage.model.dto.article;
|
||||||
|
|
||||||
import com.cultural.heritage.common.PageRequest;
|
import com.cultural.heritage.common.PageRequest;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
@ -13,6 +14,11 @@ import java.io.Serializable;
|
||||||
public class OfficialAccountArticleQueryRequest extends PageRequest implements Serializable {
|
public class OfficialAccountArticleQueryRequest extends PageRequest implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文章标题
|
||||||
|
*/
|
||||||
|
@Schema(description = "文章标题")
|
||||||
|
private String title;
|
||||||
|
|
||||||
|
|
||||||
@Serial
|
@Serial
|
||||||
|
|
|
@ -40,6 +40,8 @@ public class WeChatOfficialAccountServiceImpl extends ServiceImpl<OfficialAccoun
|
||||||
@Override
|
@Override
|
||||||
public QueryWrapper<OfficialAccountArticle> getQueryWrapper(OfficialAccountArticleQueryRequest officialAccountArticleQueryRequest) {
|
public QueryWrapper<OfficialAccountArticle> getQueryWrapper(OfficialAccountArticleQueryRequest officialAccountArticleQueryRequest) {
|
||||||
QueryWrapper<OfficialAccountArticle> queryWrapper = new QueryWrapper<>();
|
QueryWrapper<OfficialAccountArticle> queryWrapper = new QueryWrapper<>();
|
||||||
|
String title = officialAccountArticleQueryRequest.getTitle();
|
||||||
|
queryWrapper.like(StringUtils.isNotBlank(title), "title", title);
|
||||||
String sortField = officialAccountArticleQueryRequest.getSortField();
|
String sortField = officialAccountArticleQueryRequest.getSortField();
|
||||||
String sortOrder = officialAccountArticleQueryRequest.getSortOrder();
|
String sortOrder = officialAccountArticleQueryRequest.getSortOrder();
|
||||||
queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC), sortField);
|
queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC), sortField);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user