系统菜单查询接口

yun-zuoyi
yunhao.wang 6 years ago
parent 887121580b
commit e18d115d3a

@ -34,6 +34,7 @@ public class BfIntercept extends BaseBean {
@ApiParam(value ="拦截器名称")
private String interceptName;
// BlockFormEnumUtil.EXECUTION_TYPE
@Column(name="EXECUTE_MODE")
@ApiParam(value ="执行方式")
@JsonSerialize(using = ToStringSerializer.class)

@ -13,6 +13,8 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.util.List;
/**
* @Description :
@ -76,4 +78,8 @@ public class BfMenu extends BaseBean {
@Column(name = "MENU_STATUS")
@ApiParam(value = "菜单状态")
private Integer menuStatus;
@Transient
@ApiParam(value = "菜单状态")
private List<BfMenu> bfMenuList;
}

Loading…
Cancel
Save