-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
221 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
*display | ||
*/ | ||
var type = { | ||
"1": "NET程序员", | ||
"2": "PHP程序员", | ||
"3": "Java程序员", | ||
"4": "C/C++程序员", | ||
"19": "Python程序员", | ||
"20": "Ruby程序员", | ||
"5": "JavaScript程序员", | ||
"6": "Flash程序员", | ||
"7": "Delphi程序员", | ||
"8": "前端开发工程师", | ||
"9": "项目经理", | ||
"10": "技术主管", | ||
"11": "架构师", | ||
"12": "技术总监", | ||
"13": "测试工程师", | ||
"14": "系统管理员", | ||
"15": "数据库管理员", | ||
"16": "售前工程师", | ||
"17": "手机应用开发工程师", | ||
"18": "其他" | ||
}; | ||
var salary = { | ||
"0000001000": "1000元以下", | ||
"0100002000": "1000-2000元", | ||
"0200104000": "2001-4000元", | ||
"0400106000": "4001-6000元", | ||
"0600108000": "6001-8000元", | ||
"0800110000": "8001-10000元", | ||
"1000115000": "10001-15000元", | ||
"1500125000": "15000-25000元", | ||
"2500199999": "25000元以上" | ||
}; | ||
var exp={ | ||
"0":"无经验要求", | ||
"1":"1~3年", | ||
"2":"3~5年", | ||
"3":"5~10年" | ||
}; | ||
var edu={ | ||
"0":"无学历要求", | ||
"1":"大专", | ||
"2":"本科", | ||
"3":"研究生", | ||
"4":"硕士", | ||
"5":"博士" | ||
}; | ||
function distype(a){ | ||
document.write(type[a]); | ||
} | ||
|
||
function dissalary(a){ | ||
document.write(salary[a]); | ||
} | ||
|
||
function disexp(a){ | ||
document.write(exp[a]); | ||
} | ||
|
||
function disedu(a){ | ||
document.write(edu[a]); | ||
} | ||
/* | ||
* end dis | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<aside class="ui-grid-6"> | ||
<div class="job-panel"> | ||
<a href="/job/add" class="job-button job-button-blue">我要招聘</a> | ||
</div> | ||
<div class="job-panel"> | ||
<a href="#" class="job-button job-button-red">我要招聘</a> | ||
</div> | ||
</aside> | ||
<div class="ui-grid-6"> | ||
<div class="ui-box"> | ||
<div class="ui-box-title">热门职位</div> | ||
<div class="ui-box-content"> | ||
<ul class=""> | ||
|
||
|
||
<#list hotjobtype as hot> | ||
<li class=""><a href="/job/search?type=${hot.type}"><script type="text/javascript">distype('${hot.type}');</script></a>(${hot.count!})</li> | ||
|
||
</#list> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
-- MySQL dump 10.13 Distrib 5.6.10, for Win64 (x86_64) | ||
-- | ||
-- Host: localhost Database: siyanjing | ||
-- ------------------------------------------------------ | ||
-- Server version 5.6.10 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; | ||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `job` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `job`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `job` ( | ||
`id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
`title` varchar(45) NOT NULL, | ||
`content` varchar(255) NOT NULL, | ||
`author` bigint(20) NOT NULL, | ||
`type` int(11) DEFAULT NULL, | ||
`salary` varchar(45) DEFAULT NULL, | ||
`createtime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
`city` varchar(45) DEFAULT NULL, | ||
`company` varchar(45) DEFAULT NULL, | ||
`name` varchar(45) DEFAULT NULL, | ||
`recruiting_numbers` int(11) DEFAULT NULL, | ||
`email` varchar(45) DEFAULT NULL, | ||
`education` int(5) DEFAULT '0', | ||
`experience` int(5) DEFAULT '0', | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `id_UNIQUE` (`id`), | ||
KEY `author_wglnfkp_idx` (`author`), | ||
CONSTRAINT `author_wglnfkp` FOREIGN KEY (`author`) REFERENCES `users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION | ||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `job` | ||
-- | ||
|
||
LOCK TABLES `job` WRITE; | ||
/*!40000 ALTER TABLE `job` DISABLE KEYS */; | ||
INSERT INTO `job` VALUES (4,'有钱','1、有钱\r\n2、有钱',1,4,'2500199999','2013-04-12 18:01:19','有钱','有钱','有钱',1,'有钱',0,0),(5,'纳尼','1/嘻嘻\r\n2/嘻嘻',6,17,'2500199999','2013-04-21 14:21:57','杭州','哈哈','工程师',5,'[email protected]',5,3); | ||
/*!40000 ALTER TABLE `job` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; | ||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed on 2013-04-21 18:31:48 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
怎么改到classes目录下去了