diff --git a/src/main/entry/org/bdware/sc/bean/FunctionDesp.java b/src/main/entry/org/bdware/sc/bean/FunctionDesp.java index 4513cc9..d54807d 100644 --- a/src/main/entry/org/bdware/sc/bean/FunctionDesp.java +++ b/src/main/entry/org/bdware/sc/bean/FunctionDesp.java @@ -9,11 +9,13 @@ public class FunctionDesp implements Serializable { public List annotations; public String functionName; public RouteInfo routeInfo; + public boolean isView; - public FunctionDesp(String name, List anno, RouteInfo routeInfo) { - functionName = name; - annotations = anno; + public FunctionDesp(String name, List annos, RouteInfo routeInfo, boolean isView) { + this.functionName = name; + this.annotations = annos; this.routeInfo = routeInfo; + this.isView = isView; } public RouteInfo getRoute() {