diff --git a/src/main/java/com/huoran/iasf/common/shiro/ShiroConfig.java b/src/main/java/com/huoran/iasf/common/shiro/ShiroConfig.java index a8e4ea5..3379303 100644 --- a/src/main/java/com/huoran/iasf/common/shiro/ShiroConfig.java +++ b/src/main/java/com/huoran/iasf/common/shiro/ShiroConfig.java @@ -25,7 +25,7 @@ import java.util.Map; * @date 2022年7月28日*/ -@Configuration +//@Configuration @EnableConfigurationProperties(FileUploadProperties.class) public class ShiroConfig { @@ -180,6 +180,5 @@ public class ShiroConfig { return authorizationAttributeSourceAdvisor; } - } diff --git a/src/main/java/com/huoran/iasf/entity/SysContent.java b/src/main/java/com/huoran/iasf/entity/SysContent.java index aaedd74..cb16f43 100644 --- a/src/main/java/com/huoran/iasf/entity/SysContent.java +++ b/src/main/java/com/huoran/iasf/entity/SysContent.java @@ -159,4 +159,17 @@ public class SysContent implements Serializable { @ApiModelProperty(value = "文章附件") @TableField(exist = false) List fileList; + + + @ApiModelProperty(value = "刊物名称") + private String periodicalName; + + @ApiModelProperty(value = "卷") + private String reel; + + @ApiModelProperty(value = "文献号") + private String documentNumber; + + @ApiModelProperty(value = "文章关键字") + private String articleKeyWord; } \ No newline at end of file diff --git a/src/main/java/com/huoran/iasf/mapper/xml/SysContentMapper.xml b/src/main/java/com/huoran/iasf/mapper/xml/SysContentMapper.xml index aa7c0eb..db96676 100644 --- a/src/main/java/com/huoran/iasf/mapper/xml/SysContentMapper.xml +++ b/src/main/java/com/huoran/iasf/mapper/xml/SysContentMapper.xml @@ -36,7 +36,29 @@ CONCAT('%',#{req.column},'%') - ORDER BY c.create_time desc + + + AND c.template_status = #{req.templateStatus} + + + + + ORDER BY c.update_time desc + + + + ORDER BY c.update_time asc + + + + ORDER BY c.release_time desc + + + + ORDER BY c.release_time asc + + + diff --git a/src/main/java/com/huoran/iasf/service/impl/SysContentServiceImpl.java b/src/main/java/com/huoran/iasf/service/impl/SysContentServiceImpl.java index cb268d4..a8cf6d5 100644 --- a/src/main/java/com/huoran/iasf/service/impl/SysContentServiceImpl.java +++ b/src/main/java/com/huoran/iasf/service/impl/SysContentServiceImpl.java @@ -57,6 +57,14 @@ public class SysContentServiceImpl extends ServiceImpl page = new Page(reqVO.getPageNum(), reqVO.getPageSize()); + + if (reqVO.getModifiedTimeSort() == null && reqVO.getPublicationTimeSort() == null) { + reqVO.setPublicationTimeSort(0); + } + if (reqVO.getTemplateStatus() == null) { + //模板状态(0禁用;1启用) + reqVO.setTemplateStatus(0); + } IPage pageList = baseMapper.articlePaginationList(page, reqVO); return R.success(pageList); } diff --git a/src/main/java/com/huoran/iasf/vo/req/PageContentReqVO.java b/src/main/java/com/huoran/iasf/vo/req/PageContentReqVO.java index e99930b..53df03f 100644 --- a/src/main/java/com/huoran/iasf/vo/req/PageContentReqVO.java +++ b/src/main/java/com/huoran/iasf/vo/req/PageContentReqVO.java @@ -47,6 +47,16 @@ public class PageContentReqVO extends PageReqVO { @ApiModelProperty(value = "召开类型(1.即将召开 2.已经召开)") - private Integer convokeType; + private Integer convokeType; + + @ApiModelProperty(value = "修改时间排序(0默认倒序 1升序)") + private Integer modifiedTimeSort; + + @ApiModelProperty(value = "发布时间排序(0默认倒序 1升序)") + private Integer publicationTimeSort; + + @ApiModelProperty(value = "模板状态(0禁用;1启用)") + private Integer templateStatus; + } \ No newline at end of file diff --git a/src/main/java/com/huoran/iasf/vo/resp/PageContentRespVO.java b/src/main/java/com/huoran/iasf/vo/resp/PageContentRespVO.java index 1d97458..0d3b244 100644 --- a/src/main/java/com/huoran/iasf/vo/resp/PageContentRespVO.java +++ b/src/main/java/com/huoran/iasf/vo/resp/PageContentRespVO.java @@ -96,7 +96,7 @@ public class PageContentRespVO { private Integer isDisable; - @ApiModelProperty(value = "是否禁用(0默认,0启用 1禁用)") + @ApiModelProperty(value = "标签名称") private String labelName;