NTriples mode
31 | 40 | 41 | 44 |MIME types defined: text/n-triples.
├── src ├── main │ ├── resources │ │ ├── application-dev.yml │ │ ├── static │ │ │ ├── css │ │ │ │ ├── test.css │ │ │ │ ├── patterns │ │ │ │ │ ├── shattered.png │ │ │ │ │ ├── header-profile.png │ │ │ │ │ ├── header-profile-skin-1.png │ │ │ │ │ └── header-profile-skin-3.png │ │ │ │ ├── plugins │ │ │ │ │ ├── jsTree │ │ │ │ │ │ ├── 32px.png │ │ │ │ │ │ └── throbber.gif │ │ │ │ │ ├── iCheck │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ └── green@2x.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ ├── spritemap.png │ │ │ │ │ │ ├── spritemap@2x.png │ │ │ │ │ │ └── sprite-skin-flat.png │ │ │ │ │ ├── blueimp │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ ├── play-pause.png │ │ │ │ │ │ │ ├── video-play.png │ │ │ │ │ │ │ ├── video-play.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ └── play-pause.svg │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── demo.css │ │ │ │ │ ├── chosen │ │ │ │ │ │ ├── chosen-sprite.png │ │ │ │ │ │ └── chosen-sprite@2x.png │ │ │ │ │ ├── footable │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ ├── footable.eot │ │ │ │ │ │ │ ├── footable.ttf │ │ │ │ │ │ │ └── footable.woff │ │ │ │ │ ├── colorpicker │ │ │ │ │ │ └── img │ │ │ │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ │ ├── saturation.png │ │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ │ └── alpha-horizontal.png │ │ │ │ │ ├── jQueryUI │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ └── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── morris │ │ │ │ │ │ └── morris-0.4.3.min.css │ │ │ │ │ ├── webuploader │ │ │ │ │ │ └── webuploader.css │ │ │ │ │ ├── switchery │ │ │ │ │ │ └── switchery.css │ │ │ │ │ ├── fullcalendar │ │ │ │ │ │ └── fullcalendar.print.css │ │ │ │ │ ├── multiselect │ │ │ │ │ │ └── bootstrap-multiselect.css │ │ │ │ │ └── treeview │ │ │ │ │ │ └── bootstrap-treeview.css │ │ │ │ └── user-center.css │ │ │ ├── img │ │ │ │ ├── img1.jpg │ │ │ │ ├── img2.jpg │ │ │ │ ├── img3.jpg │ │ │ │ ├── img4.jpg │ │ │ │ ├── img5.jpg │ │ │ │ ├── img6.jpg │ │ │ │ ├── img7.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── banner.jpg │ │ │ │ ├── logo2.png │ │ │ │ ├── banner_2.jpg │ │ │ │ ├── browser.psd │ │ │ │ ├── poster1.png │ │ │ │ ├── poster2.png │ │ │ │ ├── poster3.png │ │ │ │ ├── loading-upload.gif │ │ │ │ └── profile_small.jpg │ │ │ ├── error │ │ │ │ ├── 404.jpg │ │ │ │ └── 404.html │ │ │ ├── icon │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.ttf │ │ │ │ └── iconfont.woff │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── lato │ │ │ │ │ ├── lato-bold.eot │ │ │ │ │ ├── lato-bold.ttf │ │ │ │ │ ├── lato-black.eot │ │ │ │ │ ├── lato-black.ttf │ │ │ │ │ ├── lato-black.woff │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ ├── lato-italic.eot │ │ │ │ │ ├── lato-italic.ttf │ │ │ │ │ ├── lato-italic.woff │ │ │ │ │ ├── lato-light.eot │ │ │ │ │ ├── lato-light.ttf │ │ │ │ │ ├── lato-light.woff │ │ │ │ │ ├── lato-regular.eot │ │ │ │ │ ├── lato-regular.ttf │ │ │ │ │ ├── lato-regular.woff │ │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ │ └── lato-bolditalic.woff │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ │ └── glyphicons │ │ │ │ │ ├── flat-ui-icons-regular.eot │ │ │ │ │ ├── flat-ui-icons-regular.ttf │ │ │ │ │ └── flat-ui-icons-regular.woff │ │ │ ├── sign_up │ │ │ │ └── img │ │ │ │ │ ├── image.jpg │ │ │ │ │ ├── closeeye.jpg │ │ │ │ │ └── openeye.jpg │ │ │ ├── layer │ │ │ │ ├── font │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ ├── images │ │ │ │ │ └── face │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ ├── 13.gif │ │ │ │ │ │ ├── 14.gif │ │ │ │ │ │ ├── 15.gif │ │ │ │ │ │ ├── 16.gif │ │ │ │ │ │ ├── 17.gif │ │ │ │ │ │ ├── 18.gif │ │ │ │ │ │ ├── 19.gif │ │ │ │ │ │ ├── 2.gif │ │ │ │ │ │ ├── 20.gif │ │ │ │ │ │ ├── 21.gif │ │ │ │ │ │ ├── 22.gif │ │ │ │ │ │ ├── 23.gif │ │ │ │ │ │ ├── 24.gif │ │ │ │ │ │ ├── 25.gif │ │ │ │ │ │ ├── 26.gif │ │ │ │ │ │ ├── 27.gif │ │ │ │ │ │ ├── 28.gif │ │ │ │ │ │ ├── 29.gif │ │ │ │ │ │ ├── 3.gif │ │ │ │ │ │ ├── 30.gif │ │ │ │ │ │ ├── 31.gif │ │ │ │ │ │ ├── 32.gif │ │ │ │ │ │ ├── 33.gif │ │ │ │ │ │ ├── 34.gif │ │ │ │ │ │ ├── 35.gif │ │ │ │ │ │ ├── 36.gif │ │ │ │ │ │ ├── 37.gif │ │ │ │ │ │ ├── 38.gif │ │ │ │ │ │ ├── 39.gif │ │ │ │ │ │ ├── 4.gif │ │ │ │ │ │ ├── 40.gif │ │ │ │ │ │ ├── 41.gif │ │ │ │ │ │ ├── 42.gif │ │ │ │ │ │ ├── 43.gif │ │ │ │ │ │ ├── 44.gif │ │ │ │ │ │ ├── 45.gif │ │ │ │ │ │ ├── 46.gif │ │ │ │ │ │ ├── 47.gif │ │ │ │ │ │ ├── 48.gif │ │ │ │ │ │ ├── 49.gif │ │ │ │ │ │ ├── 5.gif │ │ │ │ │ │ ├── 50.gif │ │ │ │ │ │ ├── 51.gif │ │ │ │ │ │ ├── 52.gif │ │ │ │ │ │ ├── 53.gif │ │ │ │ │ │ ├── 54.gif │ │ │ │ │ │ ├── 55.gif │ │ │ │ │ │ ├── 56.gif │ │ │ │ │ │ ├── 57.gif │ │ │ │ │ │ ├── 58.gif │ │ │ │ │ │ ├── 59.gif │ │ │ │ │ │ ├── 6.gif │ │ │ │ │ │ ├── 60.gif │ │ │ │ │ │ ├── 61.gif │ │ │ │ │ │ ├── 62.gif │ │ │ │ │ │ ├── 63.gif │ │ │ │ │ │ ├── 64.gif │ │ │ │ │ │ ├── 65.gif │ │ │ │ │ │ ├── 66.gif │ │ │ │ │ │ ├── 67.gif │ │ │ │ │ │ ├── 68.gif │ │ │ │ │ │ ├── 69.gif │ │ │ │ │ │ ├── 7.gif │ │ │ │ │ │ ├── 70.gif │ │ │ │ │ │ ├── 71.gif │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ └── 9.gif │ │ │ │ ├── theme │ │ │ │ │ └── default │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ │ └── loading-2.gif │ │ │ │ ├── css │ │ │ │ │ └── modules │ │ │ │ │ │ ├── layer │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ │ │ └── loading-2.gif │ │ │ │ │ │ └── code.css │ │ │ │ └── lay │ │ │ │ │ └── modules │ │ │ │ │ └── code.js │ │ │ └── js │ │ │ │ ├── plugins │ │ │ │ ├── fancybox │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── fancybox_sprite.png │ │ │ │ │ ├── fancybox_loading.gif │ │ │ │ │ ├── fancybox_overlay.png │ │ │ │ │ ├── fancybox_sprite@2x.png │ │ │ │ │ └── fancybox_loading@2x.gif │ │ │ │ ├── layer │ │ │ │ │ ├── layim │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ └── data │ │ │ │ │ │ │ ├── chatlog.json │ │ │ │ │ │ │ └── groups.json │ │ │ │ │ ├── skin │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ │ │ ├── icon_ext.png │ │ │ │ │ │ │ ├── textbg.png │ │ │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ │ │ ├── loading-2.gif │ │ │ │ │ │ │ ├── xubox_ico0.png │ │ │ │ │ │ │ ├── xubox_title0.png │ │ │ │ │ │ │ ├── xubox_loading0.gif │ │ │ │ │ │ │ ├── xubox_loading1.gif │ │ │ │ │ │ │ ├── xubox_loading2.gif │ │ │ │ │ │ │ └── xubox_loading3.gif │ │ │ │ │ │ └── moon │ │ │ │ │ │ │ └── default.png │ │ │ │ │ └── laydate │ │ │ │ │ │ └── skins │ │ │ │ │ │ └── default │ │ │ │ │ │ └── icon.png │ │ │ │ ├── gritter │ │ │ │ │ └── images │ │ │ │ │ │ ├── gritter.png │ │ │ │ │ │ ├── ie-spacer.gif │ │ │ │ │ │ └── gritter-light.png │ │ │ │ ├── webuploader │ │ │ │ │ ├── Uploader.swf │ │ │ │ │ ├── webuploader.css │ │ │ │ │ └── README.md │ │ │ │ ├── codemirror │ │ │ │ │ └── mode │ │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ └── tiddlywiki.css │ │ │ │ │ │ ├── ruby │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── tiki │ │ │ │ │ │ └── tiki.css │ │ │ │ │ │ ├── diff │ │ │ │ │ │ └── diff.js │ │ │ │ │ │ ├── ntriples │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── solr │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── z80 │ │ │ │ │ │ └── index.html │ │ │ │ ├── bootstrap-table │ │ │ │ │ └── locale │ │ │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ │ │ └── bootstrap-table-zh-CN.js │ │ │ │ ├── markdown │ │ │ │ │ └── bootstrap-markdown.zh.js │ │ │ │ ├── validate │ │ │ │ │ └── messages_zh.min.js │ │ │ │ └── suggest │ │ │ │ │ └── data.json │ │ │ │ ├── hr_login.js │ │ │ │ ├── npm.js │ │ │ │ ├── demo │ │ │ │ ├── table_base.json │ │ │ │ ├── peity-demo.js │ │ │ │ ├── photos.json │ │ │ │ └── bootstrap_table_test2.json │ │ │ │ └── user_login.js │ │ ├── templates │ │ │ ├── manager │ │ │ │ ├── favicon.ico │ │ │ │ ├── docs │ │ │ │ │ ├── img │ │ │ │ │ │ ├── page.png │ │ │ │ │ │ ├── index_4.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ └── rtl_support.png │ │ │ │ │ └── js │ │ │ │ │ │ └── prettify.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── css │ │ │ │ │ ├── patterns │ │ │ │ │ │ ├── shattered.png │ │ │ │ │ │ ├── header-profile.png │ │ │ │ │ │ ├── header-profile-skin-1.png │ │ │ │ │ │ └── header-profile-skin-3.png │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── iCheck │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ └── green@2x.png │ │ │ │ │ │ ├── jsTree │ │ │ │ │ │ ├── 32px.png │ │ │ │ │ │ └── throbber.gif │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ ├── spritemap.png │ │ │ │ │ │ ├── spritemap@2x.png │ │ │ │ │ │ └── sprite-skin-flat.png │ │ │ │ │ │ ├── blueimp │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ ├── play-pause.png │ │ │ │ │ │ │ ├── video-play.png │ │ │ │ │ │ │ ├── video-play.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ └── play-pause.svg │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── demo.css │ │ │ │ │ │ ├── chosen │ │ │ │ │ │ ├── chosen-sprite.png │ │ │ │ │ │ └── chosen-sprite@2x.png │ │ │ │ │ │ ├── footable │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ ├── footable.eot │ │ │ │ │ │ │ ├── footable.ttf │ │ │ │ │ │ │ └── footable.woff │ │ │ │ │ │ ├── jQueryUI │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ └── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── colorpicker │ │ │ │ │ │ └── img │ │ │ │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ │ ├── saturation.png │ │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ │ └── alpha-horizontal.png │ │ │ │ │ │ ├── morris │ │ │ │ │ │ └── morris-0.4.3.min.css │ │ │ │ │ │ ├── webuploader │ │ │ │ │ │ └── webuploader.css │ │ │ │ │ │ ├── switchery │ │ │ │ │ │ └── switchery.css │ │ │ │ │ │ ├── fullcalendar │ │ │ │ │ │ └── fullcalendar.print.css │ │ │ │ │ │ ├── multiselect │ │ │ │ │ │ └── bootstrap-multiselect.css │ │ │ │ │ │ └── treeview │ │ │ │ │ │ └── bootstrap-treeview.css │ │ │ │ ├── js │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── fancybox │ │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ │ ├── fancybox_loading.gif │ │ │ │ │ │ │ ├── fancybox_overlay.png │ │ │ │ │ │ │ ├── fancybox_sprite.png │ │ │ │ │ │ │ ├── fancybox_loading@2x.gif │ │ │ │ │ │ │ └── fancybox_sprite@2x.png │ │ │ │ │ │ ├── layer │ │ │ │ │ │ │ ├── layim │ │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ │ ├── chatlog.json │ │ │ │ │ │ │ │ │ └── groups.json │ │ │ │ │ │ │ ├── skin │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ │ │ ├── textbg.png │ │ │ │ │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ │ │ │ │ ├── icon_ext.png │ │ │ │ │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ │ │ │ │ ├── loading-2.gif │ │ │ │ │ │ │ │ │ ├── xubox_ico0.png │ │ │ │ │ │ │ │ │ ├── xubox_title0.png │ │ │ │ │ │ │ │ │ ├── xubox_loading0.gif │ │ │ │ │ │ │ │ │ ├── xubox_loading1.gif │ │ │ │ │ │ │ │ │ ├── xubox_loading2.gif │ │ │ │ │ │ │ │ │ └── xubox_loading3.gif │ │ │ │ │ │ │ │ └── moon │ │ │ │ │ │ │ │ │ └── default.png │ │ │ │ │ │ │ └── laydate │ │ │ │ │ │ │ │ └── skins │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── webuploader │ │ │ │ │ │ │ ├── Uploader.swf │ │ │ │ │ │ │ ├── webuploader.css │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── gritter │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── gritter.png │ │ │ │ │ │ │ │ ├── ie-spacer.gif │ │ │ │ │ │ │ │ └── gritter-light.png │ │ │ │ │ │ ├── codemirror │ │ │ │ │ │ │ └── mode │ │ │ │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ │ │ └── tiddlywiki.css │ │ │ │ │ │ │ │ ├── ruby │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ ├── tiki │ │ │ │ │ │ │ │ └── tiki.css │ │ │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ │ └── diff.js │ │ │ │ │ │ │ │ ├── ntriples │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── bootstrap-table │ │ │ │ │ │ │ └── locale │ │ │ │ │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ │ │ │ │ └── bootstrap-table-zh-CN.js │ │ │ │ │ │ ├── markdown │ │ │ │ │ │ │ └── bootstrap-markdown.zh.js │ │ │ │ │ │ ├── validate │ │ │ │ │ │ │ └── messages_zh.min.js │ │ │ │ │ │ └── suggest │ │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── table_base.json │ │ │ │ │ │ ├── peity-demo.js │ │ │ │ │ │ ├── photos.json │ │ │ │ │ │ └── bootstrap_table_test2.json │ │ │ │ │ └── welcome.js │ │ │ │ ├── plugins │ │ │ │ │ └── fullavatareditor │ │ │ │ │ │ ├── asp.net │ │ │ │ │ │ ├── c# │ │ │ │ │ │ │ ├── Upload.aspx │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ └── Newtonsoft.Json.dll │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── Upload.aspx │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ └── Newtonsoft.Json.dll │ │ │ │ │ │ ├── expressInstall.swf │ │ │ │ │ │ ├── fullAvatarEditor.swf │ │ │ │ │ │ ├── jsp │ │ │ │ │ │ └── WEB-INF │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── fastjson-1.1.9.jar │ │ │ │ │ │ │ └── commons-fileupload-1.3.jar │ │ │ │ │ │ └── crossdomain.xml │ │ │ │ ├── ie.html │ │ │ │ └── 500.html │ │ │ ├── search │ │ │ │ └── search.html │ │ │ ├── general │ │ │ │ └── error_404.html │ │ │ └── test.html │ │ └── log4j2.yml │ └── java │ │ └── qdu │ │ └── java │ │ └── recruit │ │ ├── enumeration │ │ └── ActivationEnum.java │ │ ├── service │ │ ├── CompanyService.java │ │ ├── ResumeService.java │ │ ├── CommentService.java │ │ ├── CategoryService.java │ │ ├── HRService.java │ │ ├── FavorService.java │ │ ├── UserService.java │ │ ├── ApplicationService.java │ │ ├── DepartmentService.java │ │ ├── BackManagerService.java │ │ └── impl │ │ │ ├── CategoryServiceImpl.java │ │ │ ├── ResumeServiceImpl.java │ │ │ ├── FavorServiceImpl.java │ │ │ ├── DepartmentServiceImpl.java │ │ │ ├── CommentServiceImpl.java │ │ │ └── BackManagerServiceImpl.java │ │ ├── entity │ │ ├── UserAreaEntity.java │ │ ├── FavorEntity.java │ │ ├── CategoryEntity.java │ │ ├── WebCountEntity.java │ │ ├── DepartmentEntity.java │ │ ├── AdminEntity.java │ │ ├── CommentEntity.java │ │ └── ApplicationEntity.java │ │ ├── mapper │ │ ├── CategoryMapper.java │ │ ├── DepartmentMapper.java │ │ ├── ResumeMapper.java │ │ ├── CommentMapper.java │ │ ├── CompanyMapper.java │ │ ├── UserMapper.java │ │ └── FavorMapper.java │ │ ├── pojo │ │ ├── FavorPositionBO.java │ │ ├── CommentPositionBO.java │ │ ├── UserCommentBO.java │ │ └── PositionCompanyBO.java │ │ ├── constant │ │ └── GlobalConst.java │ │ ├── controller │ │ ├── general │ │ │ └── GeneralController.java │ │ ├── hr │ │ │ └── ResumeController.java │ │ └── SMSController.java │ │ ├── DemoApplication.java │ │ ├── util │ │ ├── InfoUtil.java │ │ └── SMSUtil │ │ │ └── CheckSumBuilder.java │ │ └── Swagger2.java └── test │ └── java │ └── qdu │ └── java │ └── recruit │ ├── DemoApplicationTests.java │ ├── ApplicationServiceTest.java │ └── service │ └── impl │ └── DepartmentServiceImplTest.java ├── img └── homepage.png ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .gitattributes ├── README.md └── .gitignore /src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8080 -------------------------------------------------------------------------------- /src/main/resources/static/css/test.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: rebeccapurple; 3 | } -------------------------------------------------------------------------------- /img/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/img/homepage.png -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | -------------------------------------------------------------------------------- /src/main/resources/static/img/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/img1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/img2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/img3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/img4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/img5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/img6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/img7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/error/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/error/404.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/banner.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/logo2.png -------------------------------------------------------------------------------- /src/main/resources/static/icon/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/icon/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/icon/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/img/banner_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/banner_2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/browser.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/browser.psd -------------------------------------------------------------------------------- /src/main/resources/static/img/poster1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/poster1.png -------------------------------------------------------------------------------- /src/main/resources/static/img/poster2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/poster2.png -------------------------------------------------------------------------------- /src/main/resources/static/img/poster3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/poster3.png -------------------------------------------------------------------------------- /src/main/resources/static/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/icon/iconfont.woff -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip 2 | -------------------------------------------------------------------------------- /src/main/resources/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/img/loading-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/loading-upload.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/profile_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/img/profile_small.jpg -------------------------------------------------------------------------------- /src/main/resources/static/sign_up/img/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/sign_up/img/image.jpg -------------------------------------------------------------------------------- /src/main/resources/templates/manager/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/layer/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/layer/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/layer/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/static/sign_up/img/closeeye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/sign_up/img/closeeye.jpg -------------------------------------------------------------------------------- /src/main/resources/static/sign_up/img/openeye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/sign_up/img/openeye.jpg -------------------------------------------------------------------------------- /src/main/resources/static/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/patterns/shattered.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/jsTree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/jsTree/32px.png -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/iCheck/green.png -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/theme/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/docs/img/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/docs/img/page.png -------------------------------------------------------------------------------- /src/main/resources/static/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/patterns/header-profile.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/iCheck/green@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/images/sort_asc.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/images/sort_desc.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/images/spritemap.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/jsTree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/jsTree/throbber.gif -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /src/main/resources/static/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/docs/img/index_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/docs/img/index_4.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/docs/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/docs/img/preview.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/blueimp/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/blueimp/img/error.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/layim/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/layim/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/blueimp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/blueimp/img/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/images/spritemap@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/webuploader/Uploader.swf -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/patterns/shattered.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/docs/img/rtl_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/docs/img/rtl_support.png -------------------------------------------------------------------------------- /src/main/resources/static/css/patterns/header-profile-skin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/patterns/header-profile-skin-1.png -------------------------------------------------------------------------------- /src/main/resources/static/css/patterns/header-profile-skin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/patterns/header-profile-skin-3.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/blueimp/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/blueimp/img/play-pause.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/blueimp/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/blueimp/img/video-play.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/footable/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/footable/fonts/footable.eot -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/footable/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/footable/fonts/footable.ttf -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/moon/default.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/iCheck/green.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/jsTree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/jsTree/32px.png -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/footable/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/css/plugins/footable/fonts/footable.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons/flat-ui-icons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/glyphicons/flat-ui-icons-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/glyphicons/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/icon_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/icon_ext.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/textbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/textbg.png -------------------------------------------------------------------------------- /src/main/resources/static/layer/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/patterns/header-profile.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/iCheck/green@2x.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/images/sort_asc.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/jsTree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/jsTree/throbber.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons/flat-ui-icons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/fonts/glyphicons/flat-ui-icons-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/xubox_ico0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/xubox_ico0.png -------------------------------------------------------------------------------- /src/main/resources/static/layer/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/blueimp/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/blueimp/img/error.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/images/sort_desc.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/images/spritemap.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/plugins/fullavatareditor/asp.net/c#/Upload.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="upload.aspx.cs" Debug="true" Inherits="Upload" %> 2 | -------------------------------------------------------------------------------- /src/main/resources/templates/manager/plugins/fullavatareditor/asp.net/vb/Upload.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="VB" AutoEventWireup="true" CodeFile="Upload.aspx.vb" Debug="true" Inherits="Upload" %> 2 | -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/laydate/skins/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/laydate/skins/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/xubox_title0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/xubox_title0.png -------------------------------------------------------------------------------- /src/main/resources/static/layer/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/static/layer/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/layer/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/blueimp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/blueimp/img/loading.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/images/spritemap@2x.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/layim/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/layim/loading.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/webuploader/Uploader.swf -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/xubox_loading0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/xubox_loading0.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/xubox_loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/xubox_loading1.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/xubox_loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/xubox_loading2.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/layer/skin/default/xubox_loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/static/js/plugins/layer/skin/default/xubox_loading3.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/patterns/header-profile-skin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/patterns/header-profile-skin-1.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/patterns/header-profile-skin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/patterns/header-profile-skin-3.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/blueimp/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/blueimp/img/play-pause.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/blueimp/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/blueimp/img/video-play.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/moon/default.png -------------------------------------------------------------------------------- /src/main/java/qdu/java/recruit/enumeration/ActivationEnum.java: -------------------------------------------------------------------------------- 1 | package qdu.java.recruit.enumeration; 2 | 3 | public enum ActivationEnum { 4 | 5 | // 统一管理用户活跃度计算权重 6 | 7 | 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/footable/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/footable/fonts/footable.eot -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/footable/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/footable/fonts/footable.ttf -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/footable/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/footable/fonts/footable.woff -------------------------------------------------------------------------------- /src/main/resources/templates/manager/css/plugins/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/css/plugins/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/default/textbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/default/textbg.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/default/icon_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/default/icon_ext.png -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/js/plugins/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/templates/manager/plugins/fullavatareditor/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncestep/IndexRecruit/HEAD/src/main/resources/templates/manager/plugins/fullavatareditor/expressInstall.swf -------------------------------------------------------------------------------- /src/main/resources/templates/search/search.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
18 |
19 |
--------------------------------------------------------------------------------
/src/main/resources/templates/manager/js/plugins/codemirror/mode/ruby/test.js:
--------------------------------------------------------------------------------
1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 | // Distributed under an MIT license: http://codemirror.net/LICENSE
3 |
4 | (function() {
5 | var mode = CodeMirror.getMode({indentUnit: 2}, "ruby");
6 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
7 |
8 | MT("divide_equal_operator",
9 | "[variable bar] [operator /=] [variable foo]");
10 |
11 | MT("divide_equal_operator_no_spacing",
12 | "[variable foo][operator /=][number 42]");
13 |
14 | })();
15 |
--------------------------------------------------------------------------------
/src/main/resources/static/js/plugins/codemirror/mode/tiki/tiki.css:
--------------------------------------------------------------------------------
1 | .cm-tw-syntaxerror {
2 | color: #FFF;
3 | background-color: #900;
4 | }
5 |
6 | .cm-tw-deleted {
7 | text-decoration: line-through;
8 | }
9 |
10 | .cm-tw-header5 {
11 | font-weight: bold;
12 | }
13 | .cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/
14 | padding-left: 10px;
15 | }
16 |
17 | .cm-tw-box {
18 | border-top-width: 0px ! important;
19 | border-style: solid;
20 | border-width: 1px;
21 | border-color: inherit;
22 | }
23 |
24 | .cm-tw-underline {
25 | text-decoration: underline;
26 | }
27 |
--------------------------------------------------------------------------------
/src/main/java/qdu/java/recruit/mapper/CategoryMapper.java:
--------------------------------------------------------------------------------
1 | package qdu.java.recruit.mapper;
2 |
3 | import org.apache.ibatis.annotations.Insert;
4 | import org.apache.ibatis.annotations.Param;
5 | import org.apache.ibatis.annotations.Select;
6 | import qdu.java.recruit.entity.CategoryEntity;
7 |
8 | import java.util.List;
9 |
10 | public interface CategoryMapper {
11 |
12 | @Select("select * from category where categoryId = #{categoryId}")
13 | CategoryEntity getCategory(@Param("categoryId") int categoryId);
14 |
15 | @Select("select * from category")
16 | List11 | * private int companyId; 12 | private String companyName; 13 | private int companyLogo; 14 | private String description; 15 | private int state; 16 | private String companyCode; 17 | *
18 | */ 19 | public interface CompanyMapper { 20 | 21 | @Select("select * from company where companyId = #{comId}") 22 | CompanyEntity getCompanyById(@Param("comId") int comId); 23 | 24 | @Select("select * from company where companyCode = #{companyCode}") 25 | CompanyEntity getCompanyByCode(@Param("companyCode") String companyCode); 26 | 27 | @Insert({"insert into user(companyName,companyLogo,description,state,companyCode})" 28 | +"values(#{companyName},#{companyLogo},#{description},#{state},#{companyCode})"}) 29 | int saveCompany(CompanyEntity companyEntity); 30 | 31 | // @Update("update company set companyCode = #{companyCode} where companyId = #{companyId}") 32 | // int updateCompany(int companyCode,int companyId); 33 | } 34 | -------------------------------------------------------------------------------- /src/main/resources/templates/manager/js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bootstrap Table Chinese translation 3 | * Author: Zhixin WenMIME types defined: text/n-triples.
MIME types defined: text/n-triples.
MIME types defined: text/x-spreadsheet.
Created by Robert Plummer
42 |MIME types defined: message/http.
MIME types defined: text/x-spreadsheet.
Created by Robert Plummer
42 |MIME types defined: message/http.
MIME types defined: text/x-solr.
MIME type defined: text/x-z80.