mirror of https://gitee.com/stylefeng/roses
【8.1.7】【menu】菜单增加一个字段,更新业务视图的id的维护
parent
1e3f39c155
commit
9fbe860bb6
|
@ -144,6 +144,13 @@ public class SysMenu extends BaseExpandFieldEntity implements BasePidBuildModel
|
|||
@ChineseDescription("应用设计的业务id")
|
||||
private Long appDesignBusinessId;
|
||||
|
||||
/**
|
||||
* 应用设计的视图id
|
||||
*/
|
||||
@TableField("app_design_view_id")
|
||||
@ChineseDescription("应用设计的视图id")
|
||||
private Long appDesignViewId;
|
||||
|
||||
/**
|
||||
* 当前菜单的子菜单
|
||||
* <p>
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE `sys_menu`
|
||||
ADD COLUMN `app_design_view_id` bigint NULL COMMENT '应用设计对应业务的视图id' AFTER `app_design_business_id`;
|
Loading…
Reference in New Issue