├── .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 | 网上求职招聘系统 13 | 14 | 15 | 16 |
17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /WebContent/admin/main.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 | 主页 13 | 14 | 15 | 16 | 17 |
欢迎使用管理系统
18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebContent/admin/top.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <% String path = request.getContextPath(); %> 4 | 5 | 6 | 7 | 8 | 9 | 菜单栏 10 | 11 | 12 | 13 | 34 | 39 | 40 | -------------------------------------------------------------------------------- /WebContent/common/pagination_tag.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 2 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 3 | <%@ taglib uri="http://jsptags.com/tags/navigation/pager" prefix="pg"%> 4 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 5 | <% 6 | String path = request.getContextPath(); 7 | String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() 8 | + path + "/"; 9 | %> 10 | 11 | 12 | 13 | 14 | 19 | 20 | 21 | 79 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /WebContent/common/succeed.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /WebContent/css/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /WebContent/css/pdmcontent01.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | html, body { 4 | background: #EBEBEB; 5 | } 6 | 7 | a { 8 | outline: none; 9 | text-decoration: none; 10 | } 11 | 12 | a:hover, a:focus { 13 | outline: none; 14 | text-decoration: none; 15 | } 16 | 17 | .breadcrumb_nav { 18 | position: fixed; 19 | top: 0px; 20 | left: 0px; 21 | margin-bottom: 0px; 22 | width: 100%; 23 | z-index: 9999; 24 | border-radius: 0px; 25 | box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15); 26 | } 27 | 28 | .page-content { 29 | padding: 10px 10px; 30 | } 31 | 32 | .pagination-self { 33 | margin: 0px; 34 | } 35 | 36 | .page-content .lanmu { 37 | display: inline-block; 38 | width: 100%; 39 | overflow: hidden; 40 | } 41 | 42 | .page-content .lanmu .form-control { 43 | width: 49%; 44 | } 45 | 46 | .table .input-lenght { 47 | width: 60px; 48 | } 49 | 50 | .table th { 51 | text-align: center; 52 | } 53 | 54 | .control-label { 55 | float: left; 56 | padding-top: 5px !important; 57 | text-align: right; 58 | font-weight: 400 !important; 59 | } 60 | 61 | .rowmargin { 62 | margin-top: 30px; 63 | } 64 | 65 | input.error { 66 | border: 1px solid #E6594E; 67 | } 68 | 69 | input.highlight { 70 | border: 1px solid #7abd54; 71 | } 72 | 73 | label.error, label.tip { 74 | margin-left: 8px; 75 | color: red; 76 | } 77 | 78 | label.tip { 79 | color: #aaa; 80 | } 81 | 82 | label.valid { 83 | width: 32px; 84 | } -------------------------------------------------------------------------------- /WebContent/css/top.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /** 头部基础 **/ 3 | #header { 4 | width: 100%; 5 | height: 90px; 6 | padding: 0 20px; 7 | position: fixed; 8 | z-index: 11; 9 | left: 0; 10 | top: 0; 11 | box-shadow: 0 1px 4px rgba(0, 0, 0, .3); 12 | } 13 | 14 | #menu { 15 | position: relative; 16 | list-style: none; 17 | height: 90px; 18 | } 19 | 20 | #menu>li { 21 | float: left; 22 | } 23 | /* 系统logo区域 */ 24 | #logo { 25 | float: left; 26 | display: flex; 27 | align-items: center; 28 | height: 100%; 29 | } 30 | 31 | #logo img { 32 | vertical-align: middle; 33 | width: 60px; 34 | height: 60px; 35 | } 36 | 37 | #rinfo { 38 | margin-right: 60px; 39 | float: right; 40 | display: flex; 41 | align-items: center; 42 | height: 100%; 43 | color: #ffffff; 44 | } 45 | 46 | #rinfo a { 47 | cursor: pointer; 48 | color: #ffffff; 49 | text-decoration-line: none; 50 | } 51 | 52 | #rinfo #exit { 53 | margin-left: 20px; 54 | } 55 | /* 系统标题样式 */ 56 | #system_title { 57 | color: #fff; 58 | height: 33px; 59 | line-height: 33px; 60 | font-size: 26px; 61 | vertical-align: middle; 62 | font-weight: bold; 63 | font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif; 64 | margin-left: 10px; 65 | } 66 | 67 | /**头部颜色**/ 68 | #header { 69 | background: #31708f; 70 | } -------------------------------------------------------------------------------- /WebContent/default.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebContent/download/down.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" 2 | contentType="application/x-msdownload" pageEncoding="UTF-8"%> 3 | 4 | <%@page import="java.net.*"%> 5 | <%@page import="java.io.*"%> 6 | <% 7 | String path = request.getContextPath(); 8 | String basePath = request.getScheme() + "://" 9 | + request.getServerName() + ":" + request.getServerPort() 10 | + path + "/"; 11 | %> 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | <% 23 | //使用文件流输出的方式下载 24 | response.reset(); //取消文件开始的空白行 25 | response.setContentType("application/x-download"); //设置mime类型 26 | String pathinfo=request.getParameter("path"); 27 | 28 | String fileName = (String) request.getSession().getServletContext() 29 | .getRealPath(pathinfo); //取得下载文件的绝对路径+文件名 30 | File file=new File(fileName); 31 | String fileDisplay = ""; 32 | if(file.exists()){ 33 | fileDisplay= file.getName(); 34 | } 35 | 36 | //下载名称描述 37 | fileDisplay = URLEncoder.encode(fileDisplay, "UTF-8"); //转码 38 | response.setHeader("Content-Disposition", "attachment;filename=" 39 | + fileDisplay); 40 | OutputStream os = null; 41 | FileInputStream is = null; 42 | 43 | try { 44 | 45 | os = response.getOutputStream(); 46 | is = new FileInputStream(fileName); 47 | 48 | byte[] bt = new byte[1024]; 49 | int i = 0; 50 | while ((i = is.read(bt)) > 0) { 51 | 52 | os.write(bt, 0, i); 53 | } 54 | 55 | os.flush(); 56 | out.clear(); 57 | out = pageContext.pushBody(); 58 | 59 | } catch (Exception e) { 60 | e.printStackTrace(); 61 | 62 | } finally { 63 | 64 | if (is != null) { 65 | 66 | is.close(); 67 | is = null; 68 | } 69 | 70 | if (os != null) { 71 | 72 | os.close(); 73 | os = null; 74 | } 75 | } 76 | %> 77 | 78 | 79 | -------------------------------------------------------------------------------- /WebContent/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/images/code.png -------------------------------------------------------------------------------- /WebContent/images/dialogclose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/images/dialogclose.gif -------------------------------------------------------------------------------- /WebContent/images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/images/icon1.png -------------------------------------------------------------------------------- /WebContent/images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/images/icon2.png -------------------------------------------------------------------------------- /WebContent/images/loadbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/images/loadbg.jpg -------------------------------------------------------------------------------- /WebContent/images/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/images/login-background.jpg -------------------------------------------------------------------------------- /WebContent/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/images/logo.png -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/My97DatePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My97DatePicker 5 | 6 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/config.js: -------------------------------------------------------------------------------- 1 | var langList = 2 | [ 3 | {name:'en', charset:'UTF-8'}, 4 | {name:'zh-cn', charset:'UTF-8'}, 5 | {name:'zh-tw', charset:'UTF-8'} 6 | ]; 7 | 8 | var skinList = 9 | [ 10 | {name:'default', charset:'UTF-8'}, 11 | {name:'whyGreen', charset:'UTF-8'} 12 | ]; -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u786E\u5B9A", 10 | updateStr: "\u786E\u5B9A", 11 | timeStr: "\u65F6\u95F4", 12 | quickStr: "\u5FEB\u901F\u9009\u62E9", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u7BC4\u570D,\u9700\u8981\u64A4\u92B7\u55CE?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u78BA\u5B9A", 10 | updateStr: "\u78BA\u5B9A", 11 | timeStr: "\u6642\u9593", 12 | quickStr: "\u5FEB\u901F\u9078\u64C7", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u65BC\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate { 2 | border: #999 1px solid; 3 | height: 20px; 4 | background: #fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr { 8 | font-weight: bold; 9 | color: red; 10 | } -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebContent/js/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebContent/js/jquery-pdm.js: -------------------------------------------------------------------------------- 1 | /** 2 | www.panduoma.com 3 | QQ:3160744314 4 | **/ 5 | $(function () { 6 | var headerheight = 90; 7 | var siderbarwidth = 220; 8 | 9 | var siderbar=$("#siderbar"); 10 | var content=$("#content"); 11 | siderbar.height($(window).height()-headerheight); 12 | content.height($(window).height()-headerheight); 13 | content.width($(window).width()-siderbarwidth); 14 | $(window).resize(function(){ 15 | siderbar.height($(window).height()-headerheight); 16 | content.height($(window).height()-headerheight); 17 | content.width($(window).width()-siderbarwidth); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /WebContent/js/jquery.validate.extend.js: -------------------------------------------------------------------------------- 1 | /*******************************插件新功能-设置插件validator的默认参数*****************************************/ 2 | $.validator.setDefaults({ 3 | /*关闭键盘输入时的实时校验*/ 4 | onkeyup: null, 5 | /*添加校验成功后的执行函数--修改提示内容,并为正确提示信息添加新的样式(默认是valid)*/ 6 | success: function(label){ 7 | /*label的默认正确样式为valid,需要通过validClass来重置,否则这里添加的其他样式不能被清除*/ 8 | label.text('').addClass('valid'); 9 | }, 10 | /*重写校验元素获得焦点后的执行函数--增加[1.光标移入元素时的帮助提示,2.校验元素的高亮显示]两个功能点*/ 11 | onfocusin: function( element ) { 12 | this.lastActive = element; 13 | 14 | 15 | 16 | /*2.校验元素的高亮显示*/ 17 | $(element).addClass('highlight'); 18 | 19 | // Hide error label and remove error class on focus if enabled 20 | if ( this.settings.focusCleanup ) { 21 | if ( this.settings.unhighlight ) { 22 | this.settings.unhighlight.call( this, element, this.settings.errorClass, this.settings.validClass ); 23 | } 24 | this.hideThese( this.errorsFor( element ) ); 25 | } 26 | }, 27 | /*重写校验元素焦点离开时的执行函数--移除[1.添加的帮助提示,2.校验元素的高亮显示]*/ 28 | onfocusout: function( element ) { 29 | 30 | /*2.校验元素高亮样式移除*/ 31 | $(element).removeClass('highlight'); 32 | 33 | /*3.替换下面注释的原始代码,任何时候光标离开元素都触发校验功能*/ 34 | this.element( element ); 35 | 36 | /*if ( !this.checkable( element ) && ( element.name in this.submitted || !this.optional( element ) ) ) { 37 | this.element( element ); 38 | }*/ 39 | } 40 | }); 41 | 42 | 43 | // 联系电话(手机/电话皆可)验证 44 | $.validator.addMethod("telphone", function(value,element) { 45 | var length = value.length; 46 | var mobile = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1}))+\d{8})$/; 47 | var tel = /^(\d{3,4}-?)?\d{7,9}$/g; 48 | return this.optional(element) || tel.test(value) || (length==11 && mobile.test(value)); 49 | }, "请正确填写您的联系方式"); 50 | -------------------------------------------------------------------------------- /WebContent/js/jquery.validate.method.js: -------------------------------------------------------------------------------- 1 | /***************************************************************** 2 | 3 | jQuery Validate扩展验证方法 4 | *****************************************************************/ 5 | $(function(){ 6 | //手机号验证 7 | jQuery.validator.addMethod("telphone", function(value, element) { 8 | var pattern = /^1[34578]\d{9}$/; 9 | return this.optional(element) || (pattern.test(value)); 10 | }, "请输入正确的手机号码"); 11 | 12 | //身份证验证 13 | jQuery.validator.addMethod("idno", function(value, element) { 14 | var pattern = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/; 15 | return this.optional(element) || (pattern.test(value)); 16 | }, "请输入正确的身份证号"); 17 | 18 | //数字验证 19 | jQuery.validator.addMethod("decimal", function(value, element) { 20 | var pattern = /^(([0-9]|([1-9][0-9]{0,9}))((\.[0-9]{1,2})?))$/; 21 | return this.optional(element) || (pattern.test(value)); 22 | }, "请输入正确的数字"); 23 | 24 | 25 | }); 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /WebContent/js/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /WebContent/js/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/layer/theme/default/icon.png -------------------------------------------------------------------------------- /WebContent/js/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /WebContent/js/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /WebContent/js/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /WebContent/js/raty/fonts/raty.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/fonts/raty.eot -------------------------------------------------------------------------------- /WebContent/js/raty/fonts/raty.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/fonts/raty.ttf -------------------------------------------------------------------------------- /WebContent/js/raty/fonts/raty.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/fonts/raty.woff -------------------------------------------------------------------------------- /WebContent/js/raty/images/cancel-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/images/cancel-off.png -------------------------------------------------------------------------------- /WebContent/js/raty/images/cancel-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/images/cancel-on.png -------------------------------------------------------------------------------- /WebContent/js/raty/images/star-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/images/star-half.png -------------------------------------------------------------------------------- /WebContent/js/raty/images/star-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/images/star-off.png -------------------------------------------------------------------------------- /WebContent/js/raty/images/star-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/raty/images/star-on.png -------------------------------------------------------------------------------- /WebContent/js/raty/jquery.raty.css: -------------------------------------------------------------------------------- 1 | .cancel-on-png, .cancel-off-png, .star-on-png, .star-off-png, .star-half-png { 2 | font-size: 2em; 3 | } 4 | 5 | @font-face { 6 | font-family: "raty"; 7 | font-style: normal; 8 | font-weight: normal; 9 | src: url("./fonts/raty.eot"); 10 | src: url("./fonts/raty.eot?#iefix") format("embedded-opentype"); 11 | src: url("./fonts/raty.svg#raty") format("svg"); 12 | src: url("./fonts/raty.ttf") format("truetype"); 13 | src: url("./fonts/raty.woff") format("woff"); 14 | } 15 | 16 | .cancel-on-png, .cancel-off-png, .star-on-png, .star-off-png, .star-half-png { 17 | -moz-osx-font-smoothing: grayscale; 18 | -webkit-font-smoothing: antialiased; 19 | font-family: "raty"; 20 | font-style: normal; 21 | font-variant: normal; 22 | font-weight: normal; 23 | line-height: 1; 24 | speak: none; 25 | text-transform: none; 26 | } 27 | 28 | .cancel-on-png:before { 29 | content: "\e600"; 30 | } 31 | 32 | .cancel-off-png:before { 33 | content: "\e601"; 34 | } 35 | 36 | .star-on-png:before { 37 | content: "\f005"; 38 | } 39 | 40 | .star-off-png:before { 41 | content: "\f006"; 42 | } 43 | 44 | .star-half-png:before { 45 | content: "\f123"; 46 | } 47 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/anchor/anchor.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 14 | 15 |
16 | 17 |
18 | 19 | 39 | 40 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/alignicon(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/alignicon(1).gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/charts/chart.config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 图表配置文件 3 | * */ 4 | 5 | 6 | //不同类型的配置 7 | var typeConfig = [ 8 | { 9 | chart: { 10 | type: 'line' 11 | }, 12 | plotOptions: { 13 | line: { 14 | dataLabels: { 15 | enabled: false 16 | }, 17 | enableMouseTracking: true 18 | } 19 | } 20 | }, { 21 | chart: { 22 | type: 'line' 23 | }, 24 | plotOptions: { 25 | line: { 26 | dataLabels: { 27 | enabled: true 28 | }, 29 | enableMouseTracking: false 30 | } 31 | } 32 | }, { 33 | chart: { 34 | type: 'area' 35 | } 36 | }, { 37 | chart: { 38 | type: 'bar' 39 | } 40 | }, { 41 | chart: { 42 | type: 'column' 43 | } 44 | }, { 45 | chart: { 46 | plotBackgroundColor: null, 47 | plotBorderWidth: null, 48 | plotShadow: false 49 | }, 50 | plotOptions: { 51 | pie: { 52 | allowPointSelect: true, 53 | cursor: 'pointer', 54 | dataLabels: { 55 | enabled: true, 56 | color: '#000000', 57 | connectorColor: '#000000', 58 | formatter: function() { 59 | return ''+ this.point.name +': '+ ( Math.round( this.point.percentage*100 ) / 100 ) +' %'; 60 | } 61 | } 62 | } 63 | } 64 | } 65 | ]; 66 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/emotion.css: -------------------------------------------------------------------------------- 1 | .jd img{ 2 | background:transparent url(images/jxface2.gif?v=1.1) no-repeat scroll left top; 3 | cursor:pointer;width:35px;height:35px;display:block; 4 | } 5 | .pp img{ 6 | background:transparent url(images/fface.gif?v=1.1) no-repeat scroll left top; 7 | cursor:pointer;width:25px;height:25px;display:block; 8 | } 9 | .ldw img{ 10 | background:transparent url(images/wface.gif?v=1.1) no-repeat scroll left top; 11 | cursor:pointer;width:35px;height:35px;display:block; 12 | } 13 | .tsj img{ 14 | background:transparent url(images/tface.gif?v=1.1) no-repeat scroll left top; 15 | cursor:pointer;width:35px;height:35px;display:block; 16 | } 17 | .cat img{ 18 | background:transparent url(images/cface.gif?v=1.1) no-repeat scroll left top; 19 | cursor:pointer;width:35px;height:35px;display:block; 20 | } 21 | .bb img{ 22 | background:transparent url(images/bface.gif?v=1.1) no-repeat scroll left top; 23 | cursor:pointer;width:35px;height:35px;display:block; 24 | } 25 | .youa img{ 26 | background:transparent url(images/yface.gif?v=1.1) no-repeat scroll left top; 27 | cursor:pointer;width:35px;height:35px;display:block; 28 | } 29 | 30 | .smileytable td {height: 37px;} 31 | #tabPanel{margin-left:5px;overflow: hidden;} 32 | #tabContent {float:left;background:#FFFFFF;} 33 | #tabContent div{display: none;width:480px;overflow:hidden;} 34 | #tabIconReview.show{left:17px;display:block;} 35 | .menuFocus{background:#ACCD3C;} 36 | .menuDefault{background:#FFFFFF;} 37 | #tabIconReview{position:absolute;left:406px;left:398px \9;top:41px;z-index:65533;width:90px;height:76px;} 38 | img.review{width:90px;height:76px;border:2px solid #9cb945;background:#FFFFFF;background-position:center;background-repeat:no-repeat;} 39 | 40 | .wrapper .tabbody{position:relative;float:left;clear:both;padding:10px;width: 95%;} 41 | .tabbody table{width: 100%;} 42 | .tabbody td{border:1px solid #BAC498;} 43 | .tabbody td span{display: block;zoom:1;padding:0 4px;} -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/help/help.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created with JetBrains PhpStorm. 3 | * User: xuheng 4 | * Date: 12-9-26 5 | * Time: 下午1:06 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | /** 9 | * tab点击处理事件 10 | * @param tabHeads 11 | * @param tabBodys 12 | * @param obj 13 | */ 14 | function clickHandler( tabHeads,tabBodys,obj ) { 15 | //head样式更改 16 | for ( var k = 0, len = tabHeads.length; k < len; k++ ) { 17 | tabHeads[k].className = ""; 18 | } 19 | obj.className = "focus"; 20 | //body显隐 21 | var tabSrc = obj.getAttribute( "tabSrc" ); 22 | for ( var j = 0, length = tabBodys.length; j < length; j++ ) { 23 | var body = tabBodys[j], 24 | id = body.getAttribute( "id" ); 25 | body.onclick = function(){ 26 | this.style.zoom = 1; 27 | }; 28 | if ( id != tabSrc ) { 29 | body.style.zIndex = 1; 30 | } else { 31 | body.style.zIndex = 200; 32 | } 33 | } 34 | 35 | } 36 | 37 | /** 38 | * TAB切换 39 | * @param tabParentId tab的父节点ID或者对象本身 40 | */ 41 | function switchTab( tabParentId ) { 42 | var tabElements = $G( tabParentId ).children, 43 | tabHeads = tabElements[0].children, 44 | tabBodys = tabElements[1].children; 45 | 46 | for ( var i = 0, length = tabHeads.length; i < length; i++ ) { 47 | var head = tabHeads[i]; 48 | if ( head.className === "focus" )clickHandler(tabHeads,tabBodys, head ); 49 | head.onclick = function () { 50 | clickHandler(tabHeads,tabBodys,this); 51 | } 52 | } 53 | } 54 | switchTab("helptab"); 55 | 56 | document.getElementById('version').innerHTML = parent.UE.version; -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/music/music.css: -------------------------------------------------------------------------------- 1 | .wrapper{margin: 5px 10px;} 2 | 3 | .searchBar{height:30px;padding:7px 0 3px;text-align:center;} 4 | .searchBtn{font-size:13px;height:24px;} 5 | 6 | .resultBar{width:460px;margin:5px auto;border: 1px solid #CCC;border-radius: 5px;box-shadow: 2px 2px 5px #D3D6DA;overflow: hidden;} 7 | 8 | .listPanel{overflow: hidden;} 9 | .panelon{display:block;} 10 | .paneloff{display:none} 11 | 12 | .page{width:220px;margin:20px auto;overflow: hidden;} 13 | .pageon{float:right;width:24px;line-height:24px;height:24px;margin-right: 5px;background: none;border: none;color: #000;font-weight: bold;text-align:center} 14 | .pageoff{float:right;width:24px;line-height:24px;height:24px;cursor:pointer;background-color: #fff; 15 | border: 1px solid #E7ECF0;color: #2D64B3;margin-right: 5px;text-decoration: none;text-align:center;} 16 | 17 | .m-box{width:460px;} 18 | .m-m{float: left;line-height: 20px;height: 20px;} 19 | .m-h{height:24px;line-height:24px;padding-left: 46px;background-color:#FAFAFA;border-bottom: 1px solid #DAD8D8;font-weight: bold;font-size: 12px;color: #333;} 20 | .m-l{float:left;width:40px; } 21 | .m-t{float:left;width:140px;} 22 | .m-s{float:left;width:110px;} 23 | .m-z{float:left;width:100px;} 24 | .m-try-t{float: left;width: 60px;;} 25 | 26 | .m-try{float:left;width:20px;height:20px;background:url('http://static.tieba.baidu.com/tb/editor/images/try_music.gif') no-repeat ;} 27 | .m-trying{float:left;width:20px;height:20px;background:url('http://static.tieba.baidu.com/tb/editor/images/stop_music.gif') no-repeat ;} 28 | 29 | .loading{width:95px;height:7px;font-size:7px;margin:60px auto;background:url(http://static.tieba.baidu.com/tb/editor/images/loading.gif) no-repeat} 30 | .empty{width:300px;height:40px;padding:2px;margin:50px auto;line-height:40px; color:#006699;text-align:center;} -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/music/music.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 插入音乐 6 | 7 | 8 | 9 | 10 |
11 | 15 |
16 | 17 |
18 |
19 |
20 |
21 | 22 | 31 | 32 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/preview/preview.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 | 40 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/table/edittable.css: -------------------------------------------------------------------------------- 1 | body{ 2 | overflow: hidden; 3 | width: 540px; 4 | } 5 | .wrapper { 6 | margin: 10px auto 0; 7 | font-size: 12px; 8 | overflow: hidden; 9 | width: 520px; 10 | height: 315px; 11 | } 12 | 13 | .clear { 14 | clear: both; 15 | } 16 | 17 | .wrapper .left { 18 | float: left; 19 | margin-left: 10px;; 20 | } 21 | 22 | .wrapper .right { 23 | float: right; 24 | border-left: 2px dotted #EDEDED; 25 | padding-left: 15px; 26 | } 27 | 28 | .section { 29 | margin-bottom: 15px; 30 | width: 240px; 31 | overflow: hidden; 32 | } 33 | 34 | .section h3 { 35 | font-weight: bold; 36 | padding: 5px 0; 37 | margin-bottom: 10px; 38 | border-bottom: 1px solid #EDEDED; 39 | font-size: 12px; 40 | } 41 | 42 | .section ul { 43 | list-style: none; 44 | overflow: hidden; 45 | clear: both; 46 | 47 | } 48 | 49 | .section li { 50 | float: left; 51 | width: 120px;; 52 | } 53 | 54 | .section .tone { 55 | width: 80px;; 56 | } 57 | 58 | .section .preview { 59 | width: 220px; 60 | } 61 | 62 | .section .preview table { 63 | text-align: center; 64 | vertical-align: middle; 65 | color: #666; 66 | } 67 | 68 | .section .preview caption { 69 | font-weight: bold; 70 | } 71 | 72 | .section .preview td { 73 | border-width: 1px; 74 | border-style: solid; 75 | height: 22px; 76 | } 77 | 78 | .section .preview th { 79 | border-style: solid; 80 | border-color: #DDD; 81 | border-width: 2px 1px 1px 1px; 82 | height: 22px; 83 | background-color: #F7F7F7; 84 | } -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/table/edittd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 18 |
19 | 20 | 21 |
22 | 60 | 61 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 表格删除提示 5 | 6 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 32 | 33 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/template.css: -------------------------------------------------------------------------------- 1 | .wrap{ padding: 5px;font-size: 14px;} 2 | .left{width:425px;float: left;} 3 | .right{width:160px;border: 1px solid #ccc;float: right;padding: 5px;margin-right: 5px;} 4 | .right .pre{height: 332px;overflow-y: auto;} 5 | .right .preitem{border: white 1px solid;margin: 5px 0;padding: 2px 0;} 6 | .right .preitem:hover{background-color: lemonChiffon;cursor: pointer;border: #ccc 1px solid;} 7 | .right .preitem img{display: block;margin: 0 auto;width:100px;} 8 | .clear{clear: both;} 9 | .top{height:26px;line-height: 26px;padding: 5px;} 10 | .bottom{height:320px;width:100%;margin: 0 auto;} 11 | .transparent{ background: url("images/bg.gif") repeat;} 12 | .bottom table tr td{border:1px dashed #ccc;} 13 | #colorPicker{width: 17px;height: 17px;border: 1px solid #CCC;display: inline-block;border-radius: 3px;box-shadow: 2px 2px 5px #D3D6DA;} 14 | .border_style1{padding:2px;border: 1px solid #ccc;border-radius: 5px;box-shadow:2px 2px 5px #d3d6da;} 15 | p{margin: 5px 0} 16 | table{clear:both;margin-bottom:10px;border-collapse:collapse;word-break:break-all;} 17 | li{clear:both} 18 | ol{padding-left:40px; } -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/template/template.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created with JetBrains PhpStorm. 3 | * User: xuheng 4 | * Date: 12-8-8 5 | * Time: 下午2:09 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | (function () { 9 | var me = editor, 10 | preview = $G( "preview" ), 11 | preitem = $G( "preitem" ), 12 | tmps = templates, 13 | currentTmp; 14 | var initPre = function () { 15 | var str = ""; 16 | for ( var i = 0, tmp; tmp = tmps[i++]; ) { 17 | str += '
'; 18 | } 19 | preitem.innerHTML = str; 20 | }; 21 | var pre = function ( n ) { 22 | var tmp = tmps[n - 1]; 23 | currentTmp = tmp; 24 | clearItem(); 25 | domUtils.setStyles( preitem.childNodes[n - 1], { 26 | "background-color":"lemonChiffon", 27 | "border":"#ccc 1px solid" 28 | } ); 29 | preview.innerHTML = tmp.preHtml ? tmp.preHtml : ""; 30 | }; 31 | var clearItem = function () { 32 | var items = preitem.children; 33 | for ( var i = 0, item; item = items[i++]; ) { 34 | domUtils.setStyles( item, { 35 | "background-color":"", 36 | "border":"white 1px solid" 37 | } ); 38 | } 39 | }; 40 | dialog.onok = function () { 41 | if ( !$G( "issave" ).checked ){ 42 | me.execCommand( "cleardoc" ); 43 | } 44 | var obj = { 45 | html:currentTmp && currentTmp.html 46 | }; 47 | me.execCommand( "template", obj ); 48 | }; 49 | initPre(); 50 | window.pre = pre; 51 | pre(2) 52 | 53 | })(); -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /WebContent/js/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /WebContent/js/ueditor/jsp/controller.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | import="com.baidu.ueditor.ActionEnter" 3 | pageEncoding="UTF-8"%> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | 7 | request.setCharacterEncoding( "utf-8" ); 8 | response.setHeader("Content-Type" , "text/html"); 9 | 10 | String rootPath = application.getRealPath( "/" ); 11 | 12 | out.write( new ActionEnter( request, rootPath ).exec() ); 13 | 14 | %> -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /WebContent/js/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/highcharts/modules/funnel.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Highcharts funnel module, Beta 4 | 5 | (c) 2010-2012 Torstein Hønsi 6 | 7 | License: www.highcharts.com/license 8 | */ 9 | (function(d){var u=d.getOptions().plotOptions,p=d.seriesTypes,D=d.merge,z=function(){},A=d.each;u.funnel=D(u.pie,{center:["50%","50%"],width:"90%",neckWidth:"30%",height:"100%",neckHeight:"25%",dataLabels:{connectorWidth:1,connectorColor:"#606060"},size:!0,states:{select:{color:"#C0C0C0",borderColor:"#000000",shadow:!1}}});p.funnel=d.extendClass(p.pie,{type:"funnel",animate:z,translate:function(){var a=function(k,a){return/%$/.test(k)?a*parseInt(k,10)/100:parseInt(k,10)},g=0,e=this.chart,f=e.plotWidth, 10 | e=e.plotHeight,h=0,c=this.options,C=c.center,b=a(C[0],f),d=a(C[0],e),p=a(c.width,f),i,q,j=a(c.height,e),r=a(c.neckWidth,f),s=a(c.neckHeight,e),v=j-s,a=this.data,w,x,u=c.dataLabels.position==="left"?1:0,y,m,B,n,l,t,o;this.getWidthAt=q=function(k){return k>j-s||j===s?r:r+(p-r)*((j-s-k)/(j-s))};this.getX=function(k,a){return b+(a?-1:1)*(q(k)/2+c.dataLabels.distance)};this.center=[b,d,j];this.centerX=b;A(a,function(a){g+=a.y});A(a,function(a){o=null;x=g?a.y/g:0;m=d-j/2+h*j;l=m+x*j;i=q(m);y=b-i/2;B=y+ 11 | i;i=q(l);n=b-i/2;t=n+i;m>v?(y=n=b-r/2,B=t=b+r/2):l>v&&(o=l,i=q(v),n=b-i/2,t=n+i,l=v);w=["M",y,m,"L",B,m,t,l];o&&w.push(t,o,n,o);w.push(n,l,"Z");a.shapeType="path";a.shapeArgs={d:w};a.percentage=x*100;a.plotX=b;a.plotY=(m+(o||l))/2;a.tooltipPos=[b,a.plotY];a.slice=z;a.half=u;h+=x});this.setTooltipPoints()},drawPoints:function(){var a=this,g=a.options,e=a.chart.renderer;A(a.data,function(f){var h=f.graphic,c=f.shapeArgs;h?h.animate(c):f.graphic=e.path(c).attr({fill:f.color,stroke:g.borderColor,"stroke-width":g.borderWidth}).add(a.group)})}, 12 | sortByAngle:z,drawDataLabels:function(){var a=this.data,g=this.options.dataLabels.distance,e,f,h,c=a.length,d,b;for(this.center[2]-=2*g;c--;)h=a[c],f=(e=h.half)?1:-1,b=h.plotY,d=this.getX(b,e),h.labelPos=[0,b,d+(g-5)*f,b,d+g*f,b,e?"right":"left",0];p.pie.prototype.drawDataLabels.call(this)}})})(Highcharts); 13 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d dataMax) { 39 | dataMax = value; 40 | } else if (value < dataMin) { 41 | dataMin = value; 42 | } 43 | } 44 | }); 45 | 46 | series.translateColors(dataMin, dataMax); 47 | }, 48 | 49 | getBox: function () {} 50 | 51 | }); 52 | 53 | }(Highcharts)); 54 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/highcharts/modules/no-data-to-display.js: -------------------------------------------------------------------------------- 1 | /* 2 | Highcharts JS v3.0.6 (2013-10-04) 3 | Plugin for displaying a message when there is no data visible in chart. 4 | 5 | (c) 2010-2013 Highsoft AS 6 | Author: Øystein Moseng 7 | 8 | License: www.highcharts.com/license 9 | */ 10 | (function(c){function f(){return!!this.points.length}function g(){this.hasData()?this.hideNoData():this.showNoData()}var d=c.seriesTypes,e=c.Chart.prototype,h=c.getOptions(),i=c.extend;i(h.lang,{noData:"No data to display"});h.noData={position:{x:0,y:0,align:"center",verticalAlign:"middle"},attr:{},style:{fontWeight:"bold",fontSize:"12px",color:"#60606a"}};d.pie.prototype.hasData=f;if(d.gauge)d.gauge.prototype.hasData=f;if(d.waterfall)d.waterfall.prototype.hasData=f;c.Series.prototype.hasData=function(){return this.dataMax!== 11 | void 0&&this.dataMin!==void 0};e.showNoData=function(a){var b=this.options,a=a||b.lang.noData,b=b.noData;if(!this.noDataLabel)this.noDataLabel=this.renderer.label(a,0,0,null,null,null,null,null,"no-data").attr(b.attr).css(b.style).add(),this.noDataLabel.align(i(this.noDataLabel.getBBox(),b.position),!1,"plotBox")};e.hideNoData=function(){if(this.noDataLabel)this.noDataLabel=this.noDataLabel.destroy()};e.hasData=function(){for(var a=this.series,b=a.length;b--;)if(a[b].hasData()&&!a[b].options.isInternal)return!0; 12 | return!1};e.callbacks.push(function(a){c.addEvent(a,"load",g);c.addEvent(a,"redraw",g)})})(Highcharts); 13 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/webuploader/webuploader.css: -------------------------------------------------------------------------------- 1 | .webuploader-container { 2 | position: relative; 3 | } 4 | .webuploader-element-invisible { 5 | position: absolute !important; 6 | clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ 7 | clip: rect(1px,1px,1px,1px); 8 | } 9 | .webuploader-pick { 10 | position: relative; 11 | display: inline-block; 12 | cursor: pointer; 13 | background: #00b7ee; 14 | padding: 10px 15px; 15 | color: #fff; 16 | text-align: center; 17 | border-radius: 3px; 18 | overflow: hidden; 19 | } 20 | .webuploader-pick-hover { 21 | background: #00a2d4; 22 | } 23 | 24 | .webuploader-pick-disable { 25 | opacity: 0.6; 26 | pointer-events:none; 27 | } 28 | 29 | -------------------------------------------------------------------------------- /WebContent/js/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor.config.js -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548832177774066232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548832177774066232.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548832903206094730.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548832903206094730.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548833007701071451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548833007701071451.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548833517781023599.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548833517781023599.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548835709186072269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548835709186072269.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548835795451017586.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20190130/1548835795451017586.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610187631102002809.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610187631102002809.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610191629202096855.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610191629202096855.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610191827845073957.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610191827845073957.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610191852372002343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610191852372002343.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610192001042068365.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610192001042068365.jpg -------------------------------------------------------------------------------- /WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610192227668097671.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/js/ueditor/ueditor/jsp/upload/image/20210109/1610192227668097671.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20190130/1548832177774066232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20190130/1548832177774066232.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20190130/1548832903206094730.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20190130/1548832903206094730.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20190130/1548833007701071451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20190130/1548833007701071451.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20190130/1548833517781023599.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20190130/1548833517781023599.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20190130/1548835709186072269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20190130/1548835709186072269.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20190130/1548835795451017586.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20190130/1548835795451017586.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20210109/1610187631102002809.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20210109/1610187631102002809.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20210109/1610191629202096855.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20210109/1610191629202096855.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20210109/1610191827845073957.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20210109/1610191827845073957.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20210109/1610191852372002343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20210109/1610191852372002343.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20210109/1610192001042068365.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20210109/1610192001042068365.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20210109/1610192227668097671.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20210109/1610192227668097671.jpg -------------------------------------------------------------------------------- /WebContent/ueditor/jsp/upload/image/20210111/1610371246628007865.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/ueditor/jsp/upload/image/20210111/1610371246628007865.jpg -------------------------------------------------------------------------------- /WebContent/upload/1610187591195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/upload/1610187591195.jpg -------------------------------------------------------------------------------- /WebContent/upload/1610192187841.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/upload/1610192187841.png -------------------------------------------------------------------------------- /WebContent/upload/1610192270691.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/upload/1610192270691.png -------------------------------------------------------------------------------- /WebContent/upload/1610377266115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/upload/1610377266115.png -------------------------------------------------------------------------------- /WebContent/upload/2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/upload/2.mp4 -------------------------------------------------------------------------------- /WebContent/web/css1/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/css1/css.css -------------------------------------------------------------------------------- /WebContent/web/css1/index1.css: -------------------------------------------------------------------------------- 1 | #ni-flist { 2 | 3 | margin-left: -10px; 4 | font-size: 14px; 5 | } 6 | .ni-flist1, .ni-flist2, .ni-flist3 { 7 | float: left; 8 | margin-left: 10px; 9 | width: 320px; 10 | } 11 | .ni-fbg span { 12 | margin-left: 10px; 13 | font-size: 18px; 14 | line-height: 42px; 15 | } 16 | .ni-fbg { 17 | width: auto; 18 | height: 44px; 19 | padding: 10px; 20 | background: #F8f8f8; 21 | border-radius: 44px; 22 | margin-top: 10px; 23 | margin-left: 10px; 24 | margin-right: 10px; 25 | } 26 | 27 | .ni-glist-section { 28 | padding-top: 10px; 29 | padding-bottom: 10px; 30 | width: auto; 31 | height: auto; 32 | padding-left: 15px; 33 | overflow: auto; 34 | } 35 | .ni-f-icon { 36 | float: left; 37 | } 38 | .ni-f-icon, .ni-f-icon img { 39 | width: 44px; 40 | height: 44px; 41 | border-radius: 44px; 42 | } 43 | 44 | .ni-flist1 .short li, .ni-flist2 .short li , .ni-flist3 .short li{ 45 | float: left; 46 | display: block; 47 | overflow: hidden; 48 | width: 140px; 49 | height: 35px; 50 | line-height: 35px; 51 | } 52 | .clear { 53 | clear: both; 54 | height: 10px; 55 | visibility: hidden; 56 | overflow: hidden; 57 | } 58 | .ni-fbg span a { 59 | font-weight: bold; 60 | } 61 | 62 | a:hover { 63 | color: #FF4500; 64 | } -------------------------------------------------------------------------------- /WebContent/web/css1/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/css1/login.css -------------------------------------------------------------------------------- /WebContent/web/gonggao/gonggao_view.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html;charset=utf-8" 2 | pageEncoding="UTF-8"%> 3 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 4 | <%@ taglib uri="http://jsptags.com/tags/navigation/pager" prefix="pg"%> 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 网上求职招聘 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 | 32 |
33 |
34 |
35 | 36 |
37 |

38 | ${gonggao.name} 39 |

40 |
41 |

42 | ${gonggao.cdate} 43 |

44 |

45 | ${gonggao.gtype} 46 |

47 |

48 |
49 |
50 | ${gonggao.miaoshu} 51 |
52 | 53 |
54 | 55 | 56 |
57 |
58 |
59 |
60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /WebContent/web/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/banner.png -------------------------------------------------------------------------------- /WebContent/web/images/bobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/bobg.png -------------------------------------------------------------------------------- /WebContent/web/images/bottom-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/bottom-side.png -------------------------------------------------------------------------------- /WebContent/web/images/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/default_user.png -------------------------------------------------------------------------------- /WebContent/web/images/detail-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/detail-bg.jpg -------------------------------------------------------------------------------- /WebContent/web/images/fast-reg-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/fast-reg-text.png -------------------------------------------------------------------------------- /WebContent/web/images/fast-reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/fast-reg.png -------------------------------------------------------------------------------- /WebContent/web/images/icons-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/icons-sign.png -------------------------------------------------------------------------------- /WebContent/web/images/line-sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/line-sec.png -------------------------------------------------------------------------------- /WebContent/web/images/list-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/list-banner.jpg -------------------------------------------------------------------------------- /WebContent/web/images/logo-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/logo-2x.png -------------------------------------------------------------------------------- /WebContent/web/images/logo-2x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/logo-2x22.png -------------------------------------------------------------------------------- /WebContent/web/images/newbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/newbg.png -------------------------------------------------------------------------------- /WebContent/web/images/paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/paper.jpg -------------------------------------------------------------------------------- /WebContent/web/images/pro-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/pro-1.png -------------------------------------------------------------------------------- /WebContent/web/images/sub-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/sub-icons.png -------------------------------------------------------------------------------- /WebContent/web/images/tab1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/tab1.jpg -------------------------------------------------------------------------------- /WebContent/web/images/tab2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/tab2.jpg -------------------------------------------------------------------------------- /WebContent/web/images/tab3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/tab3.jpg -------------------------------------------------------------------------------- /WebContent/web/images/tab4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/tab4.jpg -------------------------------------------------------------------------------- /WebContent/web/images/u_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/images/u_tab.png -------------------------------------------------------------------------------- /WebContent/web/page/foot.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | <% 4 | String path = request.getContextPath(); 5 | %> 6 | 7 | -------------------------------------------------------------------------------- /WebContent/web/player/images/btn04_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/btn04_demo.gif -------------------------------------------------------------------------------- /WebContent/web/player/images/btn04_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/btn04_down.gif -------------------------------------------------------------------------------- /WebContent/web/player/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/loading.gif -------------------------------------------------------------------------------- /WebContent/web/player/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/logo.png -------------------------------------------------------------------------------- /WebContent/web/player/images/logo44x38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/logo44x38.png -------------------------------------------------------------------------------- /WebContent/web/player/images/logoCu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/logoCu.jpg -------------------------------------------------------------------------------- /WebContent/web/player/images/logoMini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/logoMini.jpg -------------------------------------------------------------------------------- /WebContent/web/player/images/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/search.jpg -------------------------------------------------------------------------------- /WebContent/web/player/images/startpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/startpic.jpg -------------------------------------------------------------------------------- /WebContent/web/player/images/vico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/images/vico.png -------------------------------------------------------------------------------- /WebContent/web/player/other/a300x250_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a300x250_01.jpg -------------------------------------------------------------------------------- /WebContent/web/player/other/a300x250_01.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a300x250_01.swf -------------------------------------------------------------------------------- /WebContent/web/player/other/a300x250_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a300x250_02.jpg -------------------------------------------------------------------------------- /WebContent/web/player/other/a300x250_02.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a300x250_02.swf -------------------------------------------------------------------------------- /WebContent/web/player/other/a400x300_01.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a400x300_01.swf -------------------------------------------------------------------------------- /WebContent/web/player/other/a650x400_01.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a650x400_01.swf -------------------------------------------------------------------------------- /WebContent/web/player/other/a650x400_02.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a650x400_02.swf -------------------------------------------------------------------------------- /WebContent/web/player/other/a730x454_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a730x454_01.jpg -------------------------------------------------------------------------------- /WebContent/web/player/other/a730x454_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a730x454_02.jpg -------------------------------------------------------------------------------- /WebContent/web/player/other/a730x454_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a730x454_03.jpg -------------------------------------------------------------------------------- /WebContent/web/player/other/a730x454_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a730x454_04.jpg -------------------------------------------------------------------------------- /WebContent/web/player/other/a90x50_01.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/a90x50_01.swf -------------------------------------------------------------------------------- /WebContent/web/player/other/此目录下文件为广告示例.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/other/此目录下文件为广告示例.txt -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic01.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic02.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic03.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic04.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic05.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic06.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic07.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic08.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic09.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/pic10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/pic10.jpg -------------------------------------------------------------------------------- /WebContent/web/player/pic/此目录下文件为结束示例图片.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/pic/此目录下文件为结束示例图片.txt -------------------------------------------------------------------------------- /WebContent/web/player/player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/OnlineJobRecruitmentManagementSystem/4b3cc31cb589cb3d02587e55b79d116ada928a0f/WebContent/web/player/player.swf -------------------------------------------------------------------------------- /WebContent/web/player/style.css: -------------------------------------------------------------------------------- 1 | a:link{font-size:12px; font-family:Arial; color:#cccccc; text-decoration: none;} 2 | a:hover{color:#ff9900; text-decoration:underline;} 3 | a:active{color:#cccccc; text-decoration:none;} -------------------------------------------------------------------------------- /src/com/mapper/BossMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Boss; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface BossMapper { 8 | /** 9 | * 查询所有招聘者 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询招聘者记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存招聘者 25 | * 26 | * @param boss 27 | * @return 28 | */ 29 | public int insertBoss(Boss boss); 30 | 31 | /** 32 | * 删除招聘者 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteBoss(int id); 38 | 39 | /** 40 | * 更新招聘者 41 | * 42 | * @param boss 43 | * @return 44 | */ 45 | public int updateBoss(Boss boss); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Boss queryBossById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/BossMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | and id= #{id} 9 | 10 | 11 | and uname=#{uname} 12 | 13 | 14 | and upwd=#{upwd} 15 | 16 | 17 | and name like concat(concat('%',#{name}),'%') 18 | 19 | 20 | 21 | 34 | 38 | 41 | 43 | insert into boss 44 | (uname,upwd,name,sex,zhiwei,tel) 45 | values 46 | (#{uname},#{upwd},#{name},#{sex},#{zhiwei},#{tel}); 47 | 48 | 49 | update boss set 50 | uname=#{uname},upwd=#{upwd},name=#{name},sex=#{sex},zhiwei=#{zhiwei},tel=#{tel} 51 | where 52 | id=#{id} 53 | 54 | 55 | delete from boss where id=${value} 56 | 57 | 58 | -------------------------------------------------------------------------------- /src/com/mapper/CatelogMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Catelog; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface CatelogMapper { 8 | /** 9 | * 查询所有职位类别 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询职位类别记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存职位类别 25 | * 26 | * @param catelog 27 | * @return 28 | */ 29 | public int insertCatelog(Catelog catelog); 30 | 31 | /** 32 | * 删除职位类别 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteCatelog(int id); 38 | 39 | /** 40 | * 更新职位类别 41 | * 42 | * @param catelog 43 | * @return 44 | */ 45 | public int updateCatelog(Catelog catelog); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Catelog queryCatelogById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/CatelogMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | and id= #{id} 9 | 10 | 11 | and name LIKE concat(concat('%',#{name}),'%') 12 | 13 | 14 | 15 | 27 | 31 | 34 | 36 | insert into catelog 37 | (name,miaoshu) 38 | values 39 | (#{name},#{miaoshu}); 40 | 41 | 42 | update 43 | catelog set 44 | name=#{name},miaoshu=#{miaoshu} 45 | where 46 | id=#{id} 47 | 48 | 49 | delete from catelog where id=${value} 50 | 51 | 52 | -------------------------------------------------------------------------------- /src/com/mapper/CommentMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Comment; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface CommentMapper { 8 | /** 9 | * 查询所有评论 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询评论记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存评论 25 | * 26 | * @param comment 27 | * @return 28 | */ 29 | public int insertComment(Comment comment); 30 | 31 | /** 32 | * 删除评论 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteComment(int id); 38 | 39 | /** 40 | * 更新评论 41 | * 42 | * @param comment 43 | * @return 44 | */ 45 | public int updateComment(Comment comment); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Comment queryCommentById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/CompanyMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | import com.model.Company; 3 | import java.util.List; 4 | import java.util.Map; 5 | public interface CompanyMapper 6 | { 7 | /** 8 | * 查询所有企业介绍 9 | * @return 10 | */ 11 | public List query(Map inputParam); 12 | /** 13 | * 查询企业介绍记录数 14 | * @param inputParam 15 | * @return 16 | */ 17 | public int getCount(Map inputParam); 18 | /** 19 | * 保存企业介绍 20 | * @param company 21 | * @return 22 | */ 23 | public int insertCompany(Company company); 24 | /** 25 | * 删除企业介绍 26 | * @param id 27 | * @return 28 | */ 29 | public int deleteCompany(int id); 30 | /** 31 | * 更新企业介绍 32 | * @param company 33 | * @return 34 | */ 35 | public int updateCompany(Company company); 36 | /** 37 | * 根据ID查询记录 38 | * @param id 39 | * @return 40 | */ 41 | public Company queryCompanyById(int id); 42 | } 43 | -------------------------------------------------------------------------------- /src/com/mapper/CompanyMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | and id= #{id} 9 | 10 | 11 | 12 | 25 | 29 | 32 | 34 | insert into company 35 | (name,shipin,miaoshu) 36 | values 37 | (#{name},#{shipin},#{miaoshu}); 38 | 39 | 40 | update 41 | company set 42 | name=#{name},shipin=#{shipin},miaoshu=#{miaoshu} 43 | where 44 | id=#{id} 45 | 46 | 47 | delete from company where id=${value} 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/com/mapper/FavMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Fav; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface FavMapper { 8 | /** 9 | * 查询所有收藏 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询收藏记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存收藏 25 | * 26 | * @param fav 27 | * @return 28 | */ 29 | public int insertFav(Fav fav); 30 | 31 | /** 32 | * 删除收藏 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteFav(int id); 38 | 39 | /** 40 | * 更新收藏 41 | * 42 | * @param fav 43 | * @return 44 | */ 45 | public int updateFav(Fav fav); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Fav queryFavById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/GonggaoMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Gonggao; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface GonggaoMapper { 8 | /** 9 | * 查询所有资讯 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询资讯记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存资讯 25 | * 26 | * @param gonggao 27 | * @return 28 | */ 29 | public int insertGonggao(Gonggao gonggao); 30 | 31 | /** 32 | * 删除资讯 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteGonggao(int id); 38 | 39 | /** 40 | * 更新资讯 41 | * 42 | * @param gonggao 43 | * @return 44 | */ 45 | public int updateGonggao(Gonggao gonggao); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Gonggao queryGonggaoById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/GonggaoMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | and id= #{id} 9 | 10 | 11 | and name LIKE concat(concat('%',#{name}),'%') 12 | 13 | 14 | and gtype=#{gtype} 15 | 16 | 17 | 18 | 30 | 34 | 37 | 39 | insert into gonggao 40 | (name,tupian,jianjie,miaoshu,cdate,gtype) 41 | values 42 | (#{name},#{tupian},#{jianjie},#{miaoshu},#{cdate},#{gtype}); 43 | 44 | 45 | update 46 | gonggao set 47 | name=#{name},tupian=#{tupian},jianjie=#{jianjie},miaoshu=#{miaoshu},gtype=#{gtype} 48 | where 49 | id=#{id} 50 | 51 | 52 | delete from gonggao where id=${value} 53 | 54 | 55 | -------------------------------------------------------------------------------- /src/com/mapper/JobMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Job; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface JobMapper { 8 | /** 9 | * 查询所有招聘 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询招聘记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存招聘 25 | * 26 | * @param job 27 | * @return 28 | */ 29 | public int insertJob(Job job); 30 | 31 | /** 32 | * 删除招聘 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteJob(int id); 38 | 39 | /** 40 | * 更新招聘 41 | * 42 | * @param job 43 | * @return 44 | */ 45 | public int updateJob(Job job); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Job queryJobById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/OfferMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Offer; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface OfferMapper { 8 | /** 9 | * 查询所有面试offer 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询面试offer记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存面试offer 25 | * 26 | * @param offer 27 | * @return 28 | */ 29 | public int insertOffer(Offer offer); 30 | 31 | /** 32 | * 删除面试offer 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteOffer(int id); 38 | 39 | /** 40 | * 更新面试offer 41 | * 42 | * @param offer 43 | * @return 44 | */ 45 | public int updateOffer(Offer offer); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Offer queryOfferById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/TadminMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Tadmin; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface TadminMapper { 8 | /** 9 | * 查询所有管理员信息 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询管理员信息记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存管理员信息 25 | * 26 | * @param tadmin 27 | * @return 28 | */ 29 | public int insertTadmin(Tadmin tadmin); 30 | 31 | /** 32 | * 删除管理员信息 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteTadmin(int id); 38 | 39 | /** 40 | * 更新管理员信息 41 | * 42 | * @param tadmin 43 | * @return 44 | */ 45 | public int updateTadmin(Tadmin tadmin); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Tadmin queryTadminById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/TadminMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | and id= #{id} 8 | and uname=#{uname} 9 | and upwd=#{upwd} 10 | 11 | 12 | 26 | 30 | 33 | 35 | insert into tadmin (uname,upwd,name,tel,utype) values 36 | (#{uname},#{upwd},#{name},#{tel},#{utype}); 37 | 38 | 39 | update tadmin set 40 | uname=#{uname},upwd=#{upwd},name=#{name},tel=#{tel},utype=#{utype} 41 | where 42 | id=#{id} 43 | 44 | 45 | delete from tadmin where 46 | id=${value} 47 | 48 | 49 | -------------------------------------------------------------------------------- /src/com/mapper/TestMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.Test; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface TestMapper { 8 | /** 9 | * 查询所有测试题 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询测试题记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存测试题 25 | * 26 | * @param test 27 | * @return 28 | */ 29 | public int insertTest(Test test); 30 | 31 | /** 32 | * 删除测试题 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteTest(int id); 38 | 39 | /** 40 | * 更新测试题 41 | * 42 | * @param test 43 | * @return 44 | */ 45 | public int updateTest(Test test); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public Test queryTestById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/mapper/TestMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | and id= #{id} 9 | 10 | 11 | and xtid= #{xtid} 12 | 13 | 14 | 15 | 28 | 32 | 35 | 37 | insert into test 38 | (xtid,content,option1,option2,option3,option4,okey,score) 39 | values 40 | (#{xtid},#{content},#{option1},#{option2},#{option3},#{option4},#{okey},#{score}); 41 | 42 | 43 | update test set 44 | xtid=#{xtid},content=#{content},option1=#{option1},option2=#{option2},option3=#{option3},option4=#{option4},okey=#{okey},score=#{score} 45 | where 46 | id=#{id} 47 | 48 | 49 | delete from test where id=${value} 50 | 51 | 52 | -------------------------------------------------------------------------------- /src/com/mapper/UserMapper.java: -------------------------------------------------------------------------------- 1 | package com.mapper; 2 | 3 | import com.model.User; 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | public interface UserMapper { 8 | /** 9 | * 查询所有应聘人员 10 | * 11 | * @return 12 | */ 13 | public List query(Map inputParam); 14 | 15 | /** 16 | * 查询应聘人员记录数 17 | * 18 | * @param inputParam 19 | * @return 20 | */ 21 | public int getCount(Map inputParam); 22 | 23 | /** 24 | * 保存应聘人员 25 | * 26 | * @param user 27 | * @return 28 | */ 29 | public int insertUser(User user); 30 | 31 | /** 32 | * 删除应聘人员 33 | * 34 | * @param id 35 | * @return 36 | */ 37 | public int deleteUser(int id); 38 | 39 | /** 40 | * 更新应聘人员 41 | * 42 | * @param user 43 | * @return 44 | */ 45 | public int updateUser(User user); 46 | 47 | /** 48 | * 根据ID查询记录 49 | * 50 | * @param id 51 | * @return 52 | */ 53 | public User queryUserById(int id); 54 | } 55 | -------------------------------------------------------------------------------- /src/com/model/Boss.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * 招聘者Model类 5 | */ 6 | public class Boss { 7 | public Boss() { 8 | } 9 | 10 | /** 11 | * id 12 | */ 13 | private Integer id; 14 | /** 15 | * 账号 16 | */ 17 | private String uname; 18 | /** 19 | * 密码 20 | */ 21 | private String upwd; 22 | /** 23 | * 姓名 24 | */ 25 | private String name; 26 | /** 27 | * 性别 28 | */ 29 | private String sex; 30 | /** 31 | * 职务 32 | */ 33 | private String zhiwei; 34 | /** 35 | * 电话 36 | */ 37 | private String tel; 38 | 39 | 40 | 41 | public Integer getId() { 42 | return this.id; 43 | } 44 | 45 | public void setId(Integer id) { 46 | this.id = id; 47 | } 48 | 49 | public String getUname() { 50 | return this.uname; 51 | } 52 | 53 | public void setUname(String uname) { 54 | this.uname = uname; 55 | } 56 | 57 | public String getUpwd() { 58 | return this.upwd; 59 | } 60 | 61 | public void setUpwd(String upwd) { 62 | this.upwd = upwd; 63 | } 64 | 65 | public String getName() { 66 | return this.name; 67 | } 68 | 69 | public void setName(String name) { 70 | this.name = name; 71 | } 72 | 73 | public String getSex() { 74 | return this.sex; 75 | } 76 | 77 | public void setSex(String sex) { 78 | this.sex = sex; 79 | } 80 | 81 | public String getZhiwei() { 82 | return this.zhiwei; 83 | } 84 | 85 | public void setZhiwei(String zhiwei) { 86 | this.zhiwei = zhiwei; 87 | } 88 | 89 | 90 | 91 | public String getTel() { 92 | return this.tel; 93 | } 94 | 95 | public void setTel(String tel) { 96 | this.tel = tel; 97 | } 98 | 99 | 100 | } 101 | -------------------------------------------------------------------------------- /src/com/model/Catelog.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * 职位类别Model类 5 | */ 6 | public class Catelog { 7 | public Catelog() { 8 | } 9 | 10 | /** 11 | * id 12 | */ 13 | private Integer id; 14 | /** 15 | * 职位类别 16 | */ 17 | private String name; 18 | /** 19 | * 描述 20 | */ 21 | private String miaoshu; 22 | 23 | public Integer getId() { 24 | return this.id; 25 | } 26 | 27 | public void setId(Integer id) { 28 | this.id = id; 29 | } 30 | 31 | public String getName() { 32 | return this.name; 33 | } 34 | 35 | public void setName(String name) { 36 | this.name = name; 37 | } 38 | 39 | public String getMiaoshu() { 40 | return this.miaoshu; 41 | } 42 | 43 | public void setMiaoshu(String miaoshu) { 44 | this.miaoshu = miaoshu; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/com/model/Comment.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * 评论Model类 5 | */ 6 | public class Comment { 7 | public Comment() { 8 | } 9 | 10 | /** 11 | * id 12 | */ 13 | private Integer id; 14 | /** 15 | * 应聘者 16 | */ 17 | private Integer uid; 18 | /** 19 | * 招聘公司 20 | */ 21 | private Integer bid; 22 | /** 23 | * 评论内容 24 | */ 25 | private String content; 26 | /** 27 | * 评论时间 28 | */ 29 | private String cdate; 30 | private User userVO; 31 | private Boss bossVO; 32 | 33 | public Integer getId() { 34 | return this.id; 35 | } 36 | 37 | public void setId(Integer id) { 38 | this.id = id; 39 | } 40 | 41 | public Integer getUid() { 42 | return this.uid; 43 | } 44 | 45 | public void setUid(Integer uid) { 46 | this.uid = uid; 47 | } 48 | 49 | public Integer getBid() { 50 | return this.bid; 51 | } 52 | 53 | public void setBid(Integer bid) { 54 | this.bid = bid; 55 | } 56 | 57 | public String getContent() { 58 | return this.content; 59 | } 60 | 61 | public void setContent(String content) { 62 | this.content = content; 63 | } 64 | 65 | public String getCdate() { 66 | return this.cdate; 67 | } 68 | 69 | public void setCdate(String cdate) { 70 | this.cdate = cdate; 71 | } 72 | 73 | public User getUserVO() { 74 | return this.userVO; 75 | } 76 | 77 | public void setUserVO(User userVO) { 78 | this.userVO = userVO; 79 | } 80 | 81 | public Boss getBossVO() { 82 | return this.bossVO; 83 | } 84 | 85 | public void setBossVO(Boss bossVO) { 86 | this.bossVO = bossVO; 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /src/com/model/Company.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | /** 3 | * 企业介绍Model类 4 | */ 5 | public class Company 6 | { 7 | public Company(){ 8 | } 9 | /** 10 | * id 11 | */ 12 | private Integer id; 13 | /** 14 | * 企业名称 15 | */ 16 | private String name; 17 | /** 18 | * 视频介绍 19 | */ 20 | private String shipin; 21 | /** 22 | * 企业介绍 23 | */ 24 | private String miaoshu; 25 | public Integer getId(){ 26 | return this.id; 27 | } 28 | public void setId(Integer id){ 29 | this.id = id; 30 | } 31 | public String getName(){ 32 | return this.name; 33 | } 34 | public void setName(String name){ 35 | this.name = name; 36 | } 37 | public String getShipin(){ 38 | return this.shipin; 39 | } 40 | public void setShipin(String shipin){ 41 | this.shipin = shipin; 42 | } 43 | public String getMiaoshu(){ 44 | return this.miaoshu; 45 | } 46 | public void setMiaoshu(String miaoshu){ 47 | this.miaoshu = miaoshu; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /src/com/model/Fav.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * 收藏Model类 5 | */ 6 | public class Fav { 7 | public Fav() { 8 | } 9 | 10 | /** 11 | * id 12 | */ 13 | private Integer id; 14 | /** 15 | * 招聘者 16 | */ 17 | private Integer bid; 18 | /** 19 | * 简历 20 | */ 21 | private Integer uid; 22 | /** 23 | * 收藏时间 24 | */ 25 | private String cdate; 26 | private User userVO; 27 | 28 | public Integer getId() { 29 | return this.id; 30 | } 31 | 32 | public void setId(Integer id) { 33 | this.id = id; 34 | } 35 | 36 | public Integer getBid() { 37 | return this.bid; 38 | } 39 | 40 | public void setBid(Integer bid) { 41 | this.bid = bid; 42 | } 43 | 44 | public Integer getUid() { 45 | return this.uid; 46 | } 47 | 48 | public void setUid(Integer uid) { 49 | this.uid = uid; 50 | } 51 | 52 | public String getCdate() { 53 | return this.cdate; 54 | } 55 | 56 | public void setCdate(String cdate) { 57 | this.cdate = cdate; 58 | } 59 | 60 | public User getUserVO() { 61 | return this.userVO; 62 | } 63 | 64 | public void setUserVO(User userVO) { 65 | this.userVO = userVO; 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /src/com/model/Gonggao.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * 资讯Model类 5 | */ 6 | public class Gonggao { 7 | public Gonggao() { 8 | } 9 | 10 | /** 11 | * id 12 | */ 13 | private Integer id; 14 | /** 15 | * 咨询标题 16 | */ 17 | private String name; 18 | /** 19 | * 图片 20 | */ 21 | private String tupian; 22 | /** 23 | * 简介 24 | */ 25 | private String jianjie; 26 | 27 | /** 28 | * 描述 29 | */ 30 | private String miaoshu; 31 | /** 32 | * 创建时间 33 | */ 34 | private String cdate; 35 | /** 36 | * 资讯类型 37 | */ 38 | private String gtype; 39 | 40 | public Integer getId() { 41 | return this.id; 42 | } 43 | 44 | public void setId(Integer id) { 45 | this.id = id; 46 | } 47 | 48 | public String getName() { 49 | return this.name; 50 | } 51 | 52 | public void setName(String name) { 53 | this.name = name; 54 | } 55 | 56 | public String getMiaoshu() { 57 | return this.miaoshu; 58 | } 59 | 60 | public void setMiaoshu(String miaoshu) { 61 | this.miaoshu = miaoshu; 62 | } 63 | 64 | public String getCdate() { 65 | return this.cdate; 66 | } 67 | 68 | public void setCdate(String cdate) { 69 | this.cdate = cdate; 70 | } 71 | 72 | public String getGtype() { 73 | return this.gtype; 74 | } 75 | 76 | public void setGtype(String gtype) { 77 | this.gtype = gtype; 78 | } 79 | 80 | public String getTupian() { 81 | return tupian; 82 | } 83 | 84 | public void setTupian(String tupian) { 85 | this.tupian = tupian; 86 | } 87 | 88 | public String getJianjie() { 89 | return jianjie; 90 | } 91 | 92 | public void setJianjie(String jianjie) { 93 | this.jianjie = jianjie; 94 | } 95 | 96 | 97 | } 98 | -------------------------------------------------------------------------------- /src/com/model/Score.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | public class Score implements java.io.Serializable{ 4 | 5 | private static final long serialVersionUID = 1L; 6 | 7 | private Integer uid; 8 | 9 | private Integer zongfen; 10 | 11 | private Integer zongshu; 12 | 13 | private Integer num; 14 | 15 | private Integer defen; 16 | // 17 | private String okdaan; 18 | 19 | private String mydaan; 20 | 21 | 22 | 23 | 24 | public Integer getUid() { 25 | return uid; 26 | } 27 | 28 | public void setUid(Integer uid) { 29 | this.uid = uid; 30 | } 31 | 32 | public Integer getZongfen() { 33 | return zongfen; 34 | } 35 | 36 | public void setZongfen(Integer zongfen) { 37 | this.zongfen = zongfen; 38 | } 39 | 40 | public Integer getDefen() { 41 | return defen; 42 | } 43 | 44 | public void setDefen(Integer defen) { 45 | this.defen = defen; 46 | } 47 | 48 | 49 | public Integer getNum() { 50 | return num; 51 | } 52 | 53 | public void setNum(Integer num) { 54 | this.num = num; 55 | } 56 | 57 | public Integer getZongshu() { 58 | return zongshu; 59 | } 60 | 61 | public void setZongshu(Integer zongshu) { 62 | this.zongshu = zongshu; 63 | } 64 | 65 | public String getOkdaan() { 66 | return okdaan; 67 | } 68 | 69 | public void setOkdaan(String okdaan) { 70 | this.okdaan = okdaan; 71 | } 72 | 73 | public String getMydaan() { 74 | return mydaan; 75 | } 76 | 77 | public void setMydaan(String mydaan) { 78 | this.mydaan = mydaan; 79 | } 80 | 81 | 82 | 83 | } 84 | -------------------------------------------------------------------------------- /src/com/model/Tadmin.java: -------------------------------------------------------------------------------- 1 | package com.model; 2 | 3 | /** 4 | * 管理员信息Model类 5 | */ 6 | public class Tadmin { 7 | public Tadmin() { 8 | } 9 | 10 | /** 11 | * id 12 | */ 13 | private Integer id; 14 | /** 15 | * 用户名 16 | */ 17 | private String uname; 18 | /** 19 | * 密码 20 | */ 21 | private String upwd; 22 | /** 23 | * 姓名 24 | */ 25 | private String name; 26 | /** 27 | * 联系电话 28 | */ 29 | private String tel; 30 | /** 31 | * 用户类型 32 | */ 33 | private String utype; 34 | 35 | public String getUtype() { 36 | return utype; 37 | } 38 | 39 | public void setUtype(String utype) { 40 | this.utype = utype; 41 | } 42 | 43 | public Integer getId() { 44 | return this.id; 45 | } 46 | 47 | public void setId(Integer id) { 48 | this.id = id; 49 | } 50 | 51 | public String getUname() { 52 | return this.uname; 53 | } 54 | 55 | public void setUname(String uname) { 56 | this.uname = uname; 57 | } 58 | 59 | public String getUpwd() { 60 | return this.upwd; 61 | } 62 | 63 | public void setUpwd(String upwd) { 64 | this.upwd = upwd; 65 | } 66 | 67 | public String getName() { 68 | return this.name; 69 | } 70 | 71 | public void setName(String name) { 72 | this.name = name; 73 | } 74 | 75 | public String getTel() { 76 | return this.tel; 77 | } 78 | 79 | public void setTel(String tel) { 80 | this.tel = tel; 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /src/com/service/BossService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Boss; 6 | 7 | /** 8 | * 招聘者Service接口 9 | */ 10 | public interface BossService { 11 | /** 12 | * 查询招聘者记录数 13 | * 14 | * @param boss 15 | * @return 16 | */ 17 | public int getCount(Boss boss); 18 | 19 | /** 20 | * 查询所有招聘者 21 | * 22 | * @return 23 | */ 24 | public List queryBossList(Boss boss, PageBean page) throws Exception; 25 | 26 | /** 27 | * 保存招聘者 28 | * 29 | * @param boss 30 | * @return 31 | */ 32 | public int insertBoss(Boss boss) throws Exception; 33 | 34 | /** 35 | * 删除招聘者 36 | * 37 | * @param id 38 | * @return 39 | */ 40 | public int deleteBoss(int id) throws Exception; 41 | 42 | /** 43 | * 更新招聘者 44 | * 45 | * @param boss 46 | * @return 47 | */ 48 | public int updateBoss(Boss boss) throws Exception; 49 | 50 | /** 51 | * 根据ID查询记录 52 | * 53 | * @param id 54 | * @return 55 | */ 56 | public Boss queryBossById(int id) throws Exception; 57 | } 58 | -------------------------------------------------------------------------------- /src/com/service/CatelogService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Catelog; 6 | 7 | /** 8 | * 职位类别Service接口 9 | */ 10 | public interface CatelogService { 11 | /** 12 | * 查询职位类别记录数 13 | * 14 | * @param catelog 15 | * @return 16 | */ 17 | public int getCount(Catelog catelog); 18 | 19 | /** 20 | * 查询所有职位类别 21 | * 22 | * @return 23 | */ 24 | public List queryCatelogList(Catelog catelog, PageBean page) 25 | throws Exception; 26 | 27 | /** 28 | * 保存职位类别 29 | * 30 | * @param catelog 31 | * @return 32 | */ 33 | public int insertCatelog(Catelog catelog) throws Exception; 34 | 35 | /** 36 | * 删除职位类别 37 | * 38 | * @param id 39 | * @return 40 | */ 41 | public int deleteCatelog(int id) throws Exception; 42 | 43 | /** 44 | * 更新职位类别 45 | * 46 | * @param catelog 47 | * @return 48 | */ 49 | public int updateCatelog(Catelog catelog) throws Exception; 50 | 51 | /** 52 | * 根据ID查询记录 53 | * 54 | * @param id 55 | * @return 56 | */ 57 | public Catelog queryCatelogById(int id) throws Exception; 58 | } 59 | -------------------------------------------------------------------------------- /src/com/service/CommentService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Comment; 6 | 7 | /** 8 | * 评论Service接口 9 | */ 10 | public interface CommentService { 11 | /** 12 | * 查询评论记录数 13 | * 14 | * @param comment 15 | * @return 16 | */ 17 | public int getCount(Comment comment); 18 | 19 | /** 20 | * 查询所有评论 21 | * 22 | * @return 23 | */ 24 | public List queryCommentList(Comment comment, PageBean page) 25 | throws Exception; 26 | 27 | /** 28 | * 保存评论 29 | * 30 | * @param comment 31 | * @return 32 | */ 33 | public int insertComment(Comment comment) throws Exception; 34 | 35 | /** 36 | * 删除评论 37 | * 38 | * @param id 39 | * @return 40 | */ 41 | public int deleteComment(int id) throws Exception; 42 | 43 | /** 44 | * 更新评论 45 | * 46 | * @param comment 47 | * @return 48 | */ 49 | public int updateComment(Comment comment) throws Exception; 50 | 51 | /** 52 | * 根据ID查询记录 53 | * 54 | * @param id 55 | * @return 56 | */ 57 | public Comment queryCommentById(int id) throws Exception; 58 | } 59 | -------------------------------------------------------------------------------- /src/com/service/CompanyService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | import java.util.List; 3 | import com.util.PageBean; 4 | import com.model.Company; 5 | /** 6 | * 企业介绍Service接口 7 | */ 8 | public interface CompanyService 9 | { 10 | /** 11 | * 查询企业介绍记录数 12 | * @param company 13 | * @return 14 | */ 15 | public int getCount(Company company); 16 | /** 17 | * 查询所有企业介绍 18 | * @return 19 | */ 20 | public List queryCompanyList(Company company, PageBean page) throws Exception; 21 | /** 22 | * 保存企业介绍 23 | * @param company 24 | * @return 25 | */ 26 | public int insertCompany(Company company) throws Exception ; 27 | /** 28 | * 删除企业介绍 29 | * @param id 30 | * @return 31 | */ 32 | public int deleteCompany(int id) throws Exception ; 33 | /** 34 | * 更新企业介绍 35 | * @param company 36 | * @return 37 | */ 38 | public int updateCompany(Company company) throws Exception ; 39 | /** 40 | * 根据ID查询记录 41 | * @param id 42 | * @return 43 | */ 44 | public Company queryCompanyById(int id) throws Exception ; 45 | } 46 | -------------------------------------------------------------------------------- /src/com/service/FavService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Fav; 6 | 7 | /** 8 | * 收藏Service接口 9 | */ 10 | public interface FavService { 11 | /** 12 | * 查询收藏记录数 13 | * 14 | * @param fav 15 | * @return 16 | */ 17 | public int getCount(Fav fav); 18 | 19 | /** 20 | * 查询所有收藏 21 | * 22 | * @return 23 | */ 24 | public List queryFavList(Fav fav, PageBean page) throws Exception; 25 | 26 | /** 27 | * 保存收藏 28 | * 29 | * @param fav 30 | * @return 31 | */ 32 | public int insertFav(Fav fav) throws Exception; 33 | 34 | /** 35 | * 删除收藏 36 | * 37 | * @param id 38 | * @return 39 | */ 40 | public int deleteFav(int id) throws Exception; 41 | 42 | /** 43 | * 更新收藏 44 | * 45 | * @param fav 46 | * @return 47 | */ 48 | public int updateFav(Fav fav) throws Exception; 49 | 50 | /** 51 | * 根据ID查询记录 52 | * 53 | * @param id 54 | * @return 55 | */ 56 | public Fav queryFavById(int id) throws Exception; 57 | } 58 | -------------------------------------------------------------------------------- /src/com/service/GonggaoService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Gonggao; 6 | 7 | /** 8 | * 资讯Service接口 9 | */ 10 | public interface GonggaoService { 11 | /** 12 | * 查询资讯记录数 13 | * 14 | * @param gonggao 15 | * @return 16 | */ 17 | public int getCount(Gonggao gonggao); 18 | 19 | /** 20 | * 查询所有资讯 21 | * 22 | * @return 23 | */ 24 | public List queryGonggaoList(Gonggao gonggao, PageBean page) 25 | throws Exception; 26 | 27 | /** 28 | * 保存资讯 29 | * 30 | * @param gonggao 31 | * @return 32 | */ 33 | public int insertGonggao(Gonggao gonggao) throws Exception; 34 | 35 | /** 36 | * 删除资讯 37 | * 38 | * @param id 39 | * @return 40 | */ 41 | public int deleteGonggao(int id) throws Exception; 42 | 43 | /** 44 | * 更新资讯 45 | * 46 | * @param gonggao 47 | * @return 48 | */ 49 | public int updateGonggao(Gonggao gonggao) throws Exception; 50 | 51 | /** 52 | * 根据ID查询记录 53 | * 54 | * @param id 55 | * @return 56 | */ 57 | public Gonggao queryGonggaoById(int id) throws Exception; 58 | } 59 | -------------------------------------------------------------------------------- /src/com/service/JobService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Job; 6 | 7 | /** 8 | * 招聘Service接口 9 | */ 10 | public interface JobService { 11 | /** 12 | * 查询招聘记录数 13 | * 14 | * @param job 15 | * @return 16 | */ 17 | public int getCount(Job job); 18 | 19 | /** 20 | * 查询所有招聘 21 | * 22 | * @return 23 | */ 24 | public List queryJobList(Job job, PageBean page) throws Exception; 25 | 26 | /** 27 | * 保存招聘 28 | * 29 | * @param job 30 | * @return 31 | */ 32 | public int insertJob(Job job) throws Exception; 33 | 34 | /** 35 | * 删除招聘 36 | * 37 | * @param id 38 | * @return 39 | */ 40 | public int deleteJob(int id) throws Exception; 41 | 42 | /** 43 | * 更新招聘 44 | * 45 | * @param job 46 | * @return 47 | */ 48 | public int updateJob(Job job) throws Exception; 49 | 50 | /** 51 | * 根据ID查询记录 52 | * 53 | * @param id 54 | * @return 55 | */ 56 | public Job queryJobById(int id) throws Exception; 57 | } 58 | -------------------------------------------------------------------------------- /src/com/service/OfferService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Offer; 6 | 7 | /** 8 | * 面试offerService接口 9 | */ 10 | public interface OfferService { 11 | /** 12 | * 查询面试offer记录数 13 | * 14 | * @param offer 15 | * @return 16 | */ 17 | public int getCount(Offer offer); 18 | 19 | /** 20 | * 查询所有面试offer 21 | * 22 | * @return 23 | */ 24 | public List queryOfferList(Offer offer, PageBean page) 25 | throws Exception; 26 | 27 | /** 28 | * 保存面试offer 29 | * 30 | * @param offer 31 | * @return 32 | */ 33 | public int insertOffer(Offer offer) throws Exception; 34 | 35 | /** 36 | * 删除面试offer 37 | * 38 | * @param id 39 | * @return 40 | */ 41 | public int deleteOffer(int id) throws Exception; 42 | 43 | /** 44 | * 更新面试offer 45 | * 46 | * @param offer 47 | * @return 48 | */ 49 | public int updateOffer(Offer offer) throws Exception; 50 | 51 | /** 52 | * 根据ID查询记录 53 | * 54 | * @param id 55 | * @return 56 | */ 57 | public Offer queryOfferById(int id) throws Exception; 58 | } 59 | -------------------------------------------------------------------------------- /src/com/service/TadminService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Tadmin; 6 | 7 | /** 8 | * 管理员信息Service接口 9 | */ 10 | public interface TadminService { 11 | /** 12 | * 查询管理员信息记录数 13 | * 14 | * @param tadmin 15 | * @return 16 | */ 17 | public int getCount(Tadmin tadmin); 18 | 19 | /** 20 | * 查询所有管理员信息 21 | * 22 | * @return 23 | */ 24 | public List queryTadminList(Tadmin tadmin, PageBean page) 25 | throws Exception; 26 | 27 | /** 28 | * 保存管理员信息 29 | * 30 | * @param tadmin 31 | * @return 32 | */ 33 | public int insertTadmin(Tadmin tadmin) throws Exception; 34 | 35 | /** 36 | * 删除管理员信息 37 | * 38 | * @param id 39 | * @return 40 | */ 41 | public int deleteTadmin(int id) throws Exception; 42 | 43 | /** 44 | * 更新管理员信息 45 | * 46 | * @param tadmin 47 | * @return 48 | */ 49 | public int updateTadmin(Tadmin tadmin) throws Exception; 50 | 51 | /** 52 | * 根据ID查询记录 53 | * 54 | * @param id 55 | * @return 56 | */ 57 | public Tadmin queryTadminById(int id) throws Exception; 58 | } 59 | -------------------------------------------------------------------------------- /src/com/service/TestService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.Test; 6 | 7 | /** 8 | * 测试题Service接口 9 | */ 10 | public interface TestService { 11 | /** 12 | * 查询测试题记录数 13 | * 14 | * @param test 15 | * @return 16 | */ 17 | public int getCount(Test test); 18 | 19 | /** 20 | * 查询所有测试题 21 | * 22 | * @return 23 | */ 24 | public List queryTestList(Test test, PageBean page) throws Exception; 25 | 26 | /** 27 | * 保存测试题 28 | * 29 | * @param test 30 | * @return 31 | */ 32 | public int insertTest(Test test) throws Exception; 33 | 34 | /** 35 | * 删除测试题 36 | * 37 | * @param id 38 | * @return 39 | */ 40 | public int deleteTest(int id) throws Exception; 41 | 42 | /** 43 | * 更新测试题 44 | * 45 | * @param test 46 | * @return 47 | */ 48 | public int updateTest(Test test) throws Exception; 49 | 50 | /** 51 | * 根据ID查询记录 52 | * 53 | * @param id 54 | * @return 55 | */ 56 | public Test queryTestById(int id) throws Exception; 57 | } 58 | -------------------------------------------------------------------------------- /src/com/service/UserService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import com.util.PageBean; 5 | import com.model.User; 6 | 7 | /** 8 | * 应聘人员Service接口 9 | */ 10 | public interface UserService { 11 | /** 12 | * 查询应聘人员记录数 13 | * 14 | * @param user 15 | * @return 16 | */ 17 | public int getCount(User user); 18 | 19 | /** 20 | * 查询所有应聘人员 21 | * 22 | * @return 23 | */ 24 | public List queryUserList(User user, PageBean page) throws Exception; 25 | 26 | /** 27 | * 保存应聘人员 28 | * 29 | * @param user 30 | * @return 31 | */ 32 | public int insertUser(User user) throws Exception; 33 | 34 | /** 35 | * 删除应聘人员 36 | * 37 | * @param id 38 | * @return 39 | */ 40 | public int deleteUser(int id) throws Exception; 41 | 42 | /** 43 | * 更新应聘人员 44 | * 45 | * @param user 46 | * @return 47 | */ 48 | public int updateUser(User user) throws Exception; 49 | 50 | /** 51 | * 根据ID查询记录 52 | * 53 | * @param id 54 | * @return 55 | */ 56 | public User queryUserById(int id) throws Exception; 57 | } 58 | -------------------------------------------------------------------------------- /src/com/util/PageBean.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * 分页参数 7 | * 8 | * @author Administrator 9 | * 10 | */ 11 | public class PageBean { 12 | public static int PAGE_IETM = 10; 13 | /** 14 | * 每页的记录条数 15 | */ 16 | private int pageSize = PAGE_IETM; 17 | /** 18 | * 当前页 19 | */ 20 | private int currentPage = 1; 21 | /** 22 | * 记录总数 23 | */ 24 | private int totalCount; 25 | /** 26 | * 记录偏移量 27 | */ 28 | private int offset; 29 | 30 | public static void setPageMap(Map map, PageBean page) { 31 | if (page != null) { 32 | map.put("page", true); 33 | map.put("offset", page.getOffset()); 34 | map.put("pageSize", page.getPageSize()); 35 | } 36 | } 37 | 38 | public PageBean() { 39 | } 40 | 41 | public PageBean(int offset) { 42 | super(); 43 | this.offset = offset; 44 | } 45 | 46 | public PageBean(int offset, int pageSize) { 47 | super(); 48 | this.offset = offset; 49 | this.pageSize = pageSize; 50 | } 51 | 52 | public int getPageSize() { 53 | return pageSize; 54 | } 55 | 56 | public void setPageSize(int pageSize) { 57 | this.pageSize = pageSize; 58 | } 59 | 60 | public int getCurrentPage() { 61 | return currentPage; 62 | } 63 | 64 | public void setCurrentPage(int currentPage) { 65 | this.currentPage = currentPage; 66 | } 67 | 68 | public int getTotalCount() { 69 | return totalCount; 70 | } 71 | 72 | public void setTotalCount(int totalCount) { 73 | this.totalCount = totalCount; 74 | } 75 | 76 | public int getOffset() { 77 | return offset; 78 | } 79 | 80 | public void setOffset(int offset) { 81 | this.offset = offset; 82 | } 83 | 84 | } 85 | -------------------------------------------------------------------------------- /src/com/util/Utils.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import java.text.SimpleDateFormat; 4 | import java.util.ArrayList; 5 | import java.util.Calendar; 6 | import java.util.Date; 7 | import java.util.Iterator; 8 | import java.util.List; 9 | 10 | /** 11 | * 系统常用方法 12 | * 13 | * @author Administrator 14 | * 15 | */ 16 | public class Utils { 17 | 18 | /** 19 | * 获取过去或者未来 任意天内的日期数组 20 | * 21 | * @param intervals 22 | * intervals天内 23 | * @return 日期数组 24 | */ 25 | public static ArrayList getNear6Month(int intervals) { 26 | ArrayList fetureDaysList = new ArrayList(); 27 | for (int i = intervals - 1; i >= 0; i--) { 28 | fetureDaysList.add(getFetureDate(i)); 29 | } 30 | return fetureDaysList; 31 | } 32 | 33 | /** 34 | * 获取未来 第 past 月的日期 35 | * 36 | * @param past 37 | * @return 38 | */ 39 | public static String getFetureDate(int past) { 40 | Calendar calendar = Calendar.getInstance(); 41 | calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH) - past); 42 | Date today = calendar.getTime(); 43 | SimpleDateFormat format = new SimpleDateFormat("yyyy-MM"); 44 | String result = format.format(today); 45 | return result; 46 | } 47 | 48 | // 获取当前时间的年份 49 | public static String getDateYear(Date date) { 50 | Calendar calendar = Calendar.getInstance(); 51 | calendar.setTime(date); 52 | int year = calendar.get(Calendar.YEAR); 53 | return String.valueOf(year) + "年"; 54 | } 55 | 56 | // 获取去年年份 57 | public static String getDateLastYear(Date date) { 58 | Calendar calendar = Calendar.getInstance(); 59 | calendar.setTime(date); 60 | calendar.add(Calendar.YEAR, -1); 61 | int year = calendar.get(Calendar.YEAR); 62 | return String.valueOf(year) + "年"; 63 | } 64 | 65 | } 66 | -------------------------------------------------------------------------------- /src/db.properties: -------------------------------------------------------------------------------- 1 | jdbc.driver=com.mysql.jdbc.Driver 2 | jdbc.url=jdbc:mysql://localhost:3306/graduation_85_qyzp 3 | jdbc.username=root 4 | jdbc.password=123456 5 | -------------------------------------------------------------------------------- /src/log4j.properties: -------------------------------------------------------------------------------- 1 | ### direct log messages to stdout ### 2 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 3 | log4j.appender.stdout.Target=System.out 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n 6 | 7 | ### direct messages to file mylog.log ### 8 | log4j.appender.file=org.apache.log4j.FileAppender 9 | log4j.appender.file.File=c:/mylog.log 10 | log4j.appender.file.layout=org.apache.log4j.PatternLayout 11 | log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n 12 | 13 | ### set log levels - for more verbose logging change 'info' to 'debug' ### 14 | 15 | log4j.rootLogger=debug, stdout 16 | -------------------------------------------------------------------------------- /src/mybatis/SqlMapConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | -------------------------------------------------------------------------------- /src/spring/applicationContext-service.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/spring/mvc-dispatcher-servlet.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | --------------------------------------------------------------------------------