From 8a0cf782d4dd80b92639c1d523fb8e629a32b92c Mon Sep 17 00:00:00 2001 From: "castle.zang" Date: Fri, 13 Jan 2023 14:54:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A8=E6=80=81=E8=A1=A8=E5=8D=95=E9=92=BB?= =?UTF-8?q?=E5=8F=96=E5=8A=9F=E8=83=BD=E4=BF=AE=E6=94=B9pojo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/estsh/i3plus/pojo/form/bean/BfElementProperty.java | 8 ++++++++ .../src/main/java/cn/estsh/i3plus/pojo/form/bean/BfMenu.java | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfElementProperty.java b/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfElementProperty.java index 864ad93..03ccb75 100644 --- a/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfElementProperty.java +++ b/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfElementProperty.java @@ -164,6 +164,14 @@ public class BfElementProperty extends BaseBean { @ApiParam(value ="元素样式") private String propertyCssStyle; + @Column(name = "DRILL_TARGET_MENU_CODE") + @ApiParam(value = "钻取目标功能") + private String drillTargetMenuCode; + + @Column(name = "DRILL_TARGET_ELEMENT_PROPERTY_CODE") + @ApiParam(value = "钻取目标关联的元素属性code") + private String drillTargetElementPropertyCode; + @Transient @ApiParam(value ="元素值") private transient Object propertyFormValue; diff --git a/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfMenu.java b/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfMenu.java index f12fc60..6d887e5 100644 --- a/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfMenu.java +++ b/modules/i3plus-pojo-form/src/main/java/cn/estsh/i3plus/pojo/form/bean/BfMenu.java @@ -100,4 +100,12 @@ public class BfMenu extends BaseBean { @Transient @ApiParam(value = "菜单子集") private List bfMenuList; + + public BfMenu(String menuName, String menuCode) { + this.menuName = menuName; + this.menuCode = menuCode; + } + + public BfMenu() { + } }