去掉禁用列表状态字段,解析业务逻辑替代

This commit is contained in:
msgroup 2021-05-12 14:58:47 +08:00
parent 1de70257f5
commit 7b226c5c79
1 changed files with 1 additions and 11 deletions

View File

@ -99,10 +99,7 @@ public class CategoryEntity extends BaseEntity {
*/ */
private String categoryImg; private String categoryImg;
/**
* 禁用生成列表
*/
private boolean categoryDisableList = false;
/** /**
* 自定义链接 * 自定义链接
*/ */
@ -458,11 +455,4 @@ public class CategoryEntity extends BaseEntity {
return categoryImg; return categoryImg;
} }
public boolean isCategoryDisableList() {
return categoryDisableList;
}
public void setCategoryDisableList(boolean categoryDisableList) {
this.categoryDisableList = categoryDisableList;
}
} }