├── README.md ├── swagger-annotation.md └── swagger-bootstrap-ui ├── pom.xml └── src └── main └── resources ├── api.json ├── doc.html ├── menu.json ├── menu1.json ├── send.html ├── swagger.json └── webjars └── bycdao-ui ├── ace ├── ace.min.css ├── ace.min.js └── bootstrap.min.js ├── bootstrap ├── css │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── cdao ├── DApiUI.js ├── DUI.css └── DUI.js ├── images └── api.ico ├── jquery ├── jquery-1.9.1.min.js └── treegrid │ ├── img │ ├── collapse.png │ ├── expand.png │ ├── file.png │ └── folder.png │ ├── jquery.treegrid.bootstrap3.js │ ├── jquery.treegrid.css │ └── jquery.treegrid.min.js ├── jsonview ├── jquery.jsonview.min.css └── jquery.jsonview.min.js └── layer3.0.3 ├── layer.js ├── mobile ├── layer.js └── need │ └── layer.css └── skin └── default ├── icon-ext.png ├── icon.png ├── layer.css ├── loading-0.gif ├── loading-1.gif └── loading-2.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/README.md -------------------------------------------------------------------------------- /swagger-annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-annotation.md -------------------------------------------------------------------------------- /swagger-bootstrap-ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/pom.xml -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/api.json -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/doc.html -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/menu.json -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/menu1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/menu1.json -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/send.html -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/swagger.json -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/ace/ace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/ace/ace.min.css -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/ace/ace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/ace/ace.min.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/ace/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/ace/bootstrap.min.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/bootstrap/js/npm.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/cdao/DApiUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/cdao/DApiUI.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/cdao/DUI.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/cdao/DUI.css -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/cdao/DUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/cdao/DUI.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/images/api.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/images/api.ico -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/collapse.png -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/expand.png -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/file.png -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/img/folder.png -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/jquery.treegrid.bootstrap3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/jquery.treegrid.bootstrap3.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/jquery.treegrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/jquery.treegrid.css -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/jquery.treegrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jquery/treegrid/jquery.treegrid.min.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jsonview/jquery.jsonview.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jsonview/jquery.jsonview.min.css -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jsonview/jquery.jsonview.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/jsonview/jquery.jsonview.min.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/layer.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/mobile/layer.js -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/mobile/need/layer.css -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/icon-ext.png -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/icon.png -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/layer.css -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/loading-0.gif -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/loading-1.gif -------------------------------------------------------------------------------- /swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liukaixiong/Swagger-Bootstrap-UI/HEAD/swagger-bootstrap-ui/src/main/resources/webjars/bycdao-ui/layer3.0.3/skin/default/loading-2.gif --------------------------------------------------------------------------------