增加禁用列表属性

This commit is contained in:
msgroup 2021-05-12 11:32:28 +08:00
parent 4b34472038
commit 1de70257f5
2 changed files with 15 additions and 0 deletions

View File

@ -98,6 +98,11 @@ public class CategoryEntity extends BaseEntity {
* 缩略图
*/
private String categoryImg;
/**
* 禁用生成列表
*/
private boolean categoryDisableList = false;
/**
* 自定义链接
*/
@ -452,4 +457,12 @@ public class CategoryEntity extends BaseEntity {
public String getTypelitpic() {
return categoryImg;
}
public boolean isCategoryDisableList() {
return categoryDisableList;
}
public void setCategoryDisableList(boolean categoryDisableList) {
this.categoryDisableList = categoryDisableList;
}
}

View File

@ -12,6 +12,8 @@ logging:
name: mcms.log #会在项目的根目录下生成对应的mcms.log文件也可以根据实际情况写绝对路径例如d:/mcms.log
path: log #会在项目的根目录下生成log目录里面会生成对应的日期目录日期目录下面生成日志压缩包备份文件,默认按每10M分割一个日志文件例如log/2020-01/app-2020-01-03-18.1.log.gz表示2020年1月3号下午六点的第一个备份也可以根据实际情况写绝对路径例如d:/log
ms:
mstore-url: http://store.i.mingsoft.net
mstore-host: store.i.mingsoft.net
diy:
html-dir: html
# scheme: https #解决使用代理服务器代理应用时标签解析域名依旧为http的问题