Skip to content

Commit

Permalink
更新readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lancelee98 committed Dec 19, 2018
1 parent 92f0b14 commit fffce21
Show file tree
Hide file tree
Showing 11 changed files with 201,678 additions and 713 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
#基于guns开源框架的 人口管理系统
#基于guns开源框架的 人口管理系统

* 数据库课设
* 数据库课设

##运行环境

* jdk1.8
* 阿里云maven镜像
* 使用\PeopleMange\sql\sql.sql生成mysql数据库,在PeopleManage\src\main\resources\application.yml 配置数据库
* 建议使用 IntelliJ IDEA 运行此系统
* 管理员账号admin 密码111111
692 changes: 0 additions & 692 deletions sql/guns.sql

This file was deleted.

201,653 changes: 201,653 additions & 0 deletions sql/sql.sql

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* 事物管理控制器
*
* @author fengshuonan
* @author lichuang
* @Date 2018-11-10 22:54:47
*/
@Controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* 车位信息控制器
*
* @author fengshuonan
* @author lichuang
* @Date 2018-11-16 21:05:06
*/
@Controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/**
* 数据分析管理器
* lancelee
* lichuang
*/
@Controller
@RequestMapping("/data_statistics")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* 租借信息控制器
*
* @author fengshuonan
* @author lichuang
* @Date 2018-11-16 21:06:13
*/
@Controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* 住房管理控制器
*
* @author fengshuonan
* @author lichuang
* @Date 2018-11-10 14:57:27
*/
@Controller
Expand Down Expand Up @@ -76,7 +76,7 @@ public Object list(String condition) {
}

/**
* 新增住房管理
* 新增住房信息
*/
@RequestMapping(value = "/add")
@ResponseBody
Expand Down Expand Up @@ -124,7 +124,6 @@ public Object update(Info info) {
ChangeChildAddress(newaddress,oldaddress,info.getRoomId());
return SUCCESS_TIP;
}

/**
* 住房管理详情
*/
Expand All @@ -133,6 +132,4 @@ public Object update(Info info) {
public Object detail(@PathVariable("infoId") Integer infoId) {
return infoService.selectById(infoId);
}


}
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/view/room_info/info/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="col-sm-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>住房管理管理</h5>
<h5>住房管理</h5>
</div>
<div class="ibox-content">
<div class="row row-lg">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ InitChart.initPeopleChartOrigin=function () {
}
},
series: [{
name:"单数",
name:"次数",
type: 'line',
areaStyle: {},
smooth: true
Expand Down
15 changes: 7 additions & 8 deletions src/main/webapp/static/modular/room_info/info/info.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* 住房管理管理初始化
* 住房管理初始化
*/
var Info = {
id: "InfoTable", //表格id
Expand Down Expand Up @@ -45,12 +45,12 @@ Info.check = function () {
};

/**
* 点击添加住房管理
* 点击添加住房
*/
Info.openAddInfo = function () {
var index = layer.open({
type: 2,
title: '添加住房管理',
title: '添加住房',
area: ['800px', '420px'], //宽高
fix: false, //不固定
maxmin: true,
Expand All @@ -60,13 +60,13 @@ Info.openAddInfo = function () {
};

/**
* 打开查看住房管理详情
* 打开查看住房详情
*/
Info.openInfoDetail = function () {
if (this.check()) {
var index = layer.open({
type: 2,
title: '住房管理详情',
title: '住房详情',
area: ['800px', '420px'], //宽高
fix: false, //不固定
maxmin: true,
Expand All @@ -77,7 +77,7 @@ Info.openInfoDetail = function () {
};

/**
* 删除住房管理
* 删除住房
*/
Info.delete = function () {
if (this.check()) {
Expand All @@ -93,15 +93,14 @@ Info.delete = function () {
};

/**
* 查询住房管理列表
* 查询住房列表
*/
Info.search = function () {
var queryData = {};
queryData['condition'] = $("#condition").val();
Info.table.refresh({query: queryData});
};


$(function () {
var defaultColunms = Info.initColumn();
var table = new BSTreeTable(Info.id, "/info/list", defaultColunms);
Expand Down

0 comments on commit fffce21

Please sign in to comment.