We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7af9e7 commit 4b151d6Copy full SHA for 4b151d6
1 file changed
server/src/main/java/com/androthink/server/model/Route.java
@@ -5,6 +5,7 @@
5
public class Route {
6
private String path;
7
private String method;
8
+ private String Description;
9
private boolean isAuth;
10
private boolean isRouteStartWith;
11
private RouteCallBack callBack;
@@ -83,6 +84,14 @@ public void setAuth(boolean auth) {
83
84
isAuth = auth;
85
}
86
87
+ public String getDescription() {
88
+ return Description;
89
+ }
90
+
91
+ public void setDescription(String description) {
92
+ Description = description;
93
94
95
public RouteCallBack getCallBack() {
96
return callBack;
97
0 commit comments