动态表单钻取功能修改pojo

yun-zuoyi
castle.zang 2 years ago
parent 6858fdd151
commit 8a0cf782d4

@ -164,6 +164,14 @@ public class BfElementProperty extends BaseBean {
@ApiParam(value ="元素样式") @ApiParam(value ="元素样式")
private String propertyCssStyle; 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 @Transient
@ApiParam(value ="元素值") @ApiParam(value ="元素值")
private transient Object propertyFormValue; private transient Object propertyFormValue;

@ -100,4 +100,12 @@ public class BfMenu extends BaseBean {
@Transient @Transient
@ApiParam(value = "菜单子集") @ApiParam(value = "菜单子集")
private List<BfMenu> bfMenuList; private List<BfMenu> bfMenuList;
public BfMenu(String menuName, String menuCode) {
this.menuName = menuName;
this.menuCode = menuCode;
}
public BfMenu() {
}
} }

Loading…
Cancel
Save