update:权限表新增区分是否首页显示的标识字段

This commit is contained in:
sunzheng
2024-07-25 14:42:00 +08:00
parent cabe5440d7
commit a3466a1e3b
3 changed files with 11 additions and 4 deletions
@@ -167,7 +167,13 @@ public class SysPermission implements Serializable {
private boolean internalOrExternal;
/*update_end author:wuxianquan date:20190908 for:实体增加字段 */
public SysPermission() {
/**
* 用于标识是否出现在首页-快捷入口的列表中, 通过是否为null来判断, 具体内容由前端来进行配置
*/
@ApiModelProperty(value = "用于标识是否出现在首页-快捷入口的列表中, 通过是否为null来判断, 具体内容由前端来进行配置")
private String homeIcon;
public SysPermission() {
}
public SysPermission(boolean index) {
@@ -117,7 +117,8 @@
p.status,
p.internal_or_external,
p.menu_en,
p.app_id
p.app_id,
p.home_icon
FROM sys_permission p
INNER JOIN sys_permission p2 ON p.parent_id = p2.id
${ew.customSqlSegment}