├── .DS_Store ├── .gitattributes ├── README.md ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ ├── activation-1.1.jar │ │ ├── aopalliance-1.0.jar │ │ ├── aspectjweaver-1.8.7.jar │ │ ├── commons-codec-1.9.jar │ │ ├── commons-fileupload-1.3.3.jar │ │ ├── commons-io-2.4.jar │ │ ├── commons-lang3-3.3.2.jar │ │ ├── commons-logging-1.2.jar │ │ ├── commons-net-3.3.jar │ │ ├── druid-1.0.9.jar │ │ ├── gson-2.8.5.jar │ │ ├── jackson-annotations-2.9.0.jar │ │ ├── jackson-core-2.9.8.jar │ │ ├── jackson-databind-2.9.8.jar │ │ ├── json.jar │ │ ├── jspsmartupload.jar │ │ ├── jstl-1.2.jar │ │ ├── jtds-1.2.2.jar │ │ ├── log4j-1.2.16.jar │ │ ├── mail-1.4.1.jar │ │ ├── mybatis-3.2.8.jar │ │ ├── mybatis-paginator-1.2.15.jar │ │ ├── mybatis-spring-1.2.2.jar │ │ ├── mysql-connector-java-5.1.7-bin.jar │ │ ├── pagehelper-3.4.2.jar │ │ ├── pager-taglib.jar │ │ ├── poi-3.11.jar │ │ ├── slf4j-api-1.6.4.jar │ │ ├── slf4j-log4j12-1.6.4.jar │ │ ├── spring-aop-4.2.4.RELEASE.jar │ │ ├── spring-aspects-4.2.4.RELEASE.jar │ │ ├── spring-beans-4.2.4.RELEASE.jar │ │ ├── spring-context-4.2.4.RELEASE.jar │ │ ├── spring-context-support-4.2.4.RELEASE.jar │ │ ├── spring-core-4.2.4.RELEASE.jar │ │ ├── spring-expression-4.2.4.RELEASE.jar │ │ ├── spring-jdbc-4.2.4.RELEASE.jar │ │ ├── spring-jms-4.2.4.RELEASE.jar │ │ ├── spring-messaging-4.2.4.RELEASE.jar │ │ ├── spring-tx-4.2.4.RELEASE.jar │ │ ├── spring-web-4.2.4.RELEASE.jar │ │ ├── spring-webmvc-4.2.4.RELEASE.jar │ │ └── ueditor-1.1.2.jar │ └── web.xml ├── admin │ ├── boss │ │ ├── boss_add.jsp │ │ ├── boss_info.jsp │ │ ├── boss_list.jsp │ │ ├── boss_update.jsp │ │ ├── boss_upwd.jsp │ │ └── boss_view.jsp │ ├── catelog │ │ ├── catelog_add.jsp │ │ ├── catelog_list.jsp │ │ ├── catelog_update.jsp │ │ └── catelog_view.jsp │ ├── company │ │ └── company_info.jsp │ ├── fav │ │ └── fav_list.jsp │ ├── gonggao │ │ ├── gonggao_add.jsp │ │ ├── gonggao_list.jsp │ │ └── gonggao_update.jsp │ ├── index.jsp │ ├── jianli │ │ ├── user_add.jsp │ │ ├── user_list.jsp │ │ ├── user_update.jsp │ │ └── user_view.jsp │ ├── job │ │ ├── job_add.jsp │ │ ├── job_list.jsp │ │ ├── job_update.jsp │ │ └── job_view.jsp │ ├── left.jsp │ ├── login.jsp │ ├── main.jsp │ ├── offer │ │ ├── offer_jieguo.jsp │ │ ├── offer_list.jsp │ │ ├── offer_update.jsp │ │ └── offer_view.jsp │ ├── register.jsp │ ├── tadmin │ │ ├── tadmin_add.jsp │ │ ├── tadmin_list.jsp │ │ ├── tadmin_update.jsp │ │ ├── tadmin_upwd.jsp │ │ └── tadmin_view.jsp │ ├── test │ │ ├── test_add.jsp │ │ ├── test_list.jsp │ │ ├── test_update.jsp │ │ └── test_view.jsp │ ├── top.jsp │ └── user │ │ ├── user_add.jsp │ │ ├── user_list.jsp │ │ └── user_view.jsp ├── common │ ├── pagination_tag.jsp │ └── succeed.jsp ├── css │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── left.css │ ├── login.css │ ├── pdmcontent01.css │ └── top.css ├── default.jsp ├── download │ └── down.jsp ├── images │ ├── code.png │ ├── dialogclose.gif │ ├── icon1.png │ ├── icon2.png │ ├── loadbg.jpg │ ├── login-background.jpg │ └── logo.png ├── js │ ├── My97DatePicker │ │ ├── My97DatePicker.htm │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── config.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ ├── echarts.common.min.js │ ├── echarts.min.js │ ├── jquery-1.4.4.min.js │ ├── jquery-3.1.1.js │ ├── jquery-3.2.1.js │ ├── jquery-3.4.1.min.js │ ├── jquery-migrate-1.2.1.min.js │ ├── jquery-pdm.js │ ├── jquery.jqprint-0.3.js │ ├── jquery.validate.extend.js │ ├── jquery.validate.method.js │ ├── jquery.validate.min.js │ ├── layer │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ └── theme │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── popup.js │ ├── raty │ │ ├── fonts │ │ │ ├── raty.eot │ │ │ ├── raty.svg │ │ │ ├── raty.ttf │ │ │ └── raty.woff │ │ ├── images │ │ │ ├── cancel-off.png │ │ │ ├── cancel-on.png │ │ │ ├── star-half.png │ │ │ ├── star-off.png │ │ │ └── star-on.png │ │ ├── jquery.raty.css │ │ └── jquery.raty.js │ └── ueditor │ │ ├── dialogs │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon(1).gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars(1).js │ │ │ └── spechars.html │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── fClipboard_ueditor.swf │ │ │ ├── imageUploader.swf │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ │ ├── jsp │ │ ├── config.json │ │ └── controller.jsp │ │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs(1).svg │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video-js.swf │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ ├── xss.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.js │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ ├── ueditor.parse.js │ │ ├── ueditor.parse.min.js │ │ └── ueditor │ │ └── jsp │ │ └── upload │ │ └── image │ │ ├── 20190130 │ │ ├── 1548832177774066232.jpg │ │ ├── 1548832903206094730.jpg │ │ ├── 1548833007701071451.jpg │ │ ├── 1548833517781023599.jpg │ │ ├── 1548835709186072269.jpg │ │ └── 1548835795451017586.jpg │ │ └── 20210109 │ │ ├── 1610187631102002809.jpg │ │ ├── 1610191629202096855.jpg │ │ ├── 1610191827845073957.jpg │ │ ├── 1610191852372002343.jpg │ │ ├── 1610192001042068365.jpg │ │ └── 1610192227668097671.jpg ├── ueditor │ └── jsp │ │ └── upload │ │ └── image │ │ ├── 20190130 │ │ ├── 1548832177774066232.jpg │ │ ├── 1548832903206094730.jpg │ │ ├── 1548833007701071451.jpg │ │ ├── 1548833517781023599.jpg │ │ ├── 1548835709186072269.jpg │ │ └── 1548835795451017586.jpg │ │ ├── 20210109 │ │ ├── 1610187631102002809.jpg │ │ ├── 1610191629202096855.jpg │ │ ├── 1610191827845073957.jpg │ │ ├── 1610191852372002343.jpg │ │ ├── 1610192001042068365.jpg │ │ └── 1610192227668097671.jpg │ │ └── 20210111 │ │ └── 1610371246628007865.jpg ├── upload │ ├── 1610187591195.jpg │ ├── 1610192187841.png │ ├── 1610192270691.png │ ├── 1610377266115.png │ ├── 2.mp4 │ ├── upload.jsp │ └── upload_re.jsp └── web │ ├── comment │ └── comment_list.jsp │ ├── company │ └── company_view.jsp │ ├── css │ ├── app_user.css │ ├── common.css │ ├── detail.css │ ├── home.css │ ├── index.css │ ├── job_v.css │ ├── login.css │ ├── main.css │ ├── main2.css │ ├── reset.css │ ├── sem10.css │ ├── sign.css │ └── user.css │ ├── css1 │ ├── common.css │ ├── common1.css │ ├── css.css │ ├── detail.css │ ├── fabu.css │ ├── forgerpwd.css │ ├── headerfooterindex.css │ ├── house.css │ ├── index.css │ ├── index1.css │ ├── lianjiaim.css │ ├── list.css │ ├── login.css │ ├── login_common.css │ ├── main.css │ ├── new_login.css │ ├── style.css │ ├── tools.css │ └── user.css │ ├── gonggao │ ├── gonggao_list.jsp │ └── gonggao_view.jsp │ ├── images │ ├── banner.png │ ├── bobg.png │ ├── bottom-side.png │ ├── default_user.png │ ├── detail-bg.jpg │ ├── fast-reg-text.png │ ├── fast-reg.png │ ├── icons-sign.png │ ├── line-sec.png │ ├── list-banner.jpg │ ├── logo-2x.png │ ├── logo-2x22.png │ ├── newbg.png │ ├── paper.jpg │ ├── pro-1.png │ ├── sub-icons.png │ ├── tab1.jpg │ ├── tab2.jpg │ ├── tab3.jpg │ ├── tab4.jpg │ └── u_tab.png │ ├── index.jsp │ ├── job │ ├── job_list.jsp │ └── job_view.jsp │ ├── js │ ├── easySlider.js │ ├── jquery-3.2.1.js │ └── main.js │ ├── jsss │ ├── hm.js │ ├── jquery-1.12.2.min.js │ ├── ka.zhipin.min.js │ └── main.js │ ├── login.jsp │ ├── offer │ ├── my_offers.jsp │ └── offer_view.jsp │ ├── page │ ├── foot.jsp │ └── head.jsp │ ├── player │ ├── CuSunV4set.xml │ ├── css │ │ ├── common.css │ │ └── videos.min.css │ ├── demoX1.html │ ├── demoX2.html │ ├── demoX3.html │ ├── demoX4.html │ ├── demoX5.html │ ├── demoX6.html │ ├── images │ │ ├── btn04_demo.gif │ │ ├── btn04_down.gif │ │ ├── common.css │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── logo44x38.png │ │ ├── logoCu.jpg │ │ ├── logoMini.jpg │ │ ├── search.jpg │ │ ├── startpic.jpg │ │ └── vico.png │ ├── index.html │ ├── js │ │ └── player.min.js │ ├── other │ │ ├── a300x250_01.jpg │ │ ├── a300x250_01.swf │ │ ├── a300x250_02.jpg │ │ ├── a300x250_02.swf │ │ ├── a400x300_01.swf │ │ ├── a650x400_01.swf │ │ ├── a650x400_02.swf │ │ ├── a730x454_01.jpg │ │ ├── a730x454_02.jpg │ │ ├── a730x454_03.jpg │ │ ├── a730x454_04.jpg │ │ ├── a90x50_01.swf │ │ └── 此目录下文件为广告示例.txt │ ├── pic │ │ ├── pic01.jpg │ │ ├── pic02.jpg │ │ ├── pic03.jpg │ │ ├── pic04.jpg │ │ ├── pic05.jpg │ │ ├── pic06.jpg │ │ ├── pic07.jpg │ │ ├── pic08.jpg │ │ ├── pic09.jpg │ │ ├── pic10.jpg │ │ └── 此目录下文件为结束示例图片.txt │ ├── player.swf │ ├── setForShare.xml │ └── style.css │ ├── regiset.jsp │ ├── test │ ├── testSucceed.jsp │ └── test_list.jsp │ └── user │ ├── jianli.jsp │ ├── user_info.jsp │ ├── user_update.jsp │ └── user_upwd.jsp └── src ├── com ├── controller │ ├── BossController.java │ ├── CatelogController.java │ ├── CommentController.java │ ├── CompanyController.java │ ├── FavController.java │ ├── GonggaoController.java │ ├── IndexController.java │ ├── JobController.java │ ├── LoginController.java │ ├── OfferController.java │ ├── TadminController.java │ ├── TestController.java │ └── UserController.java ├── mapper │ ├── BossMapper.java │ ├── BossMapper.xml │ ├── CatelogMapper.java │ ├── CatelogMapper.xml │ ├── CommentMapper.java │ ├── CommentMapper.xml │ ├── CompanyMapper.java │ ├── CompanyMapper.xml │ ├── FavMapper.java │ ├── FavMapper.xml │ ├── GonggaoMapper.java │ ├── GonggaoMapper.xml │ ├── JobMapper.java │ ├── JobMapper.xml │ ├── OfferMapper.java │ ├── OfferMapper.xml │ ├── TadminMapper.java │ ├── TadminMapper.xml │ ├── TestMapper.java │ ├── TestMapper.xml │ ├── UserMapper.java │ └── UserMapper.xml ├── model │ ├── Boss.java │ ├── Catelog.java │ ├── Comment.java │ ├── Company.java │ ├── Fav.java │ ├── Gonggao.java │ ├── Job.java │ ├── Offer.java │ ├── Score.java │ ├── Tadmin.java │ ├── Test.java │ └── User.java ├── service │ ├── BossService.java │ ├── BossServiceImpl.java │ ├── CatelogService.java │ ├── CatelogServiceImpl.java │ ├── CommentService.java │ ├── CommentServiceImpl.java │ ├── CompanyService.java │ ├── CompanyServiceImpl.java │ ├── FavService.java │ ├── FavServiceImpl.java │ ├── GonggaoService.java │ ├── GonggaoServiceImpl.java │ ├── JobService.java │ ├── JobServiceImpl.java │ ├── OfferService.java │ ├── OfferServiceImpl.java │ ├── TadminService.java │ ├── TadminServiceImpl.java │ ├── TestService.java │ ├── TestServiceImpl.java │ ├── UserService.java │ └── UserServiceImpl.java └── util │ ├── PageBean.java │ ├── Utils.java │ └── VCodeServlet.java ├── db.properties ├── log4j.properties ├── mybatis └── SqlMapConfig.xml └── spring ├── applicationContext-dao.xml ├── applicationContext-service.xml ├── applicationContext-trans.xml └── mvc-dispatcher-servlet.xml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/activation-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/activation-1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/aspectjweaver-1.8.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/aspectjweaver-1.8.7.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/commons-codec-1.9.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-fileupload-1.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/commons-fileupload-1.3.3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-lang3-3.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/commons-lang3-3.3.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-net-3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/commons-net-3.3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/druid-1.0.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/druid-1.0.9.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/gson-2.8.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/gson-2.8.5.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-annotations-2.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/jackson-annotations-2.9.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-core-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/jackson-core-2.9.8.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-databind-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/jackson-databind-2.9.8.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/json.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jspsmartupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/jspsmartupload.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jtds-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/jtds-1.2.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/log4j-1.2.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/log4j-1.2.16.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mail-1.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/mail-1.4.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mybatis-3.2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/mybatis-3.2.8.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mybatis-paginator-1.2.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/mybatis-paginator-1.2.15.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mybatis-spring-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/mybatis-spring-1.2.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/pagehelper-3.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/pagehelper-3.4.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/pager-taglib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/pager-taglib.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/poi-3.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/poi-3.11.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/slf4j-api-1.6.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/slf4j-api-1.6.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/slf4j-log4j12-1.6.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/slf4j-log4j12-1.6.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-aop-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-aop-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-aspects-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-aspects-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-beans-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-beans-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-context-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-context-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-context-support-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-context-support-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-core-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-core-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-expression-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-expression-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-jdbc-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-jdbc-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-jms-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-jms-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-messaging-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-messaging-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-tx-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-tx-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-web-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-web-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-webmvc-4.2.4.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/spring-webmvc-4.2.4.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/ueditor-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/WEB-INF/lib/ueditor-1.1.2.jar -------------------------------------------------------------------------------- /WebContent/admin/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2 | <% String path = request.getContextPath(); %> 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 |