文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-22 23:31:29 +08:00
parent 026b57ccb7
commit 2b8232fb1f
2 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package com.cultural.heritage.model.dto.article;
import com.cultural.heritage.common.PageRequest;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
@ -13,6 +14,11 @@ import java.io.Serializable;
public class OfficialAccountArticleQueryRequest extends PageRequest implements Serializable {
/**
* 文章标题
*/
@Schema(description = "文章标题")
private String title;
@Serial

View File

@ -40,6 +40,8 @@ public class WeChatOfficialAccountServiceImpl extends ServiceImpl<OfficialAccoun
@Override
public QueryWrapper<OfficialAccountArticle> getQueryWrapper(OfficialAccountArticleQueryRequest officialAccountArticleQueryRequest) {
QueryWrapper<OfficialAccountArticle> queryWrapper = new QueryWrapper<>();
String title = officialAccountArticleQueryRequest.getTitle();
queryWrapper.like(StringUtils.isNotBlank(title), "title", title);
String sortField = officialAccountArticleQueryRequest.getSortField();
String sortOrder = officialAccountArticleQueryRequest.getSortOrder();
queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC), sortField);