Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-microservice-exam
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
汪想
spring-microservice-exam
Commits
47c7fba0
Commit
47c7fba0
authored
May 22, 2019
by
tangyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复bug,增加租户查询条件
parent
5d59e233
Show whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
324 additions
and
222 deletions
+324
-222
README.md
README.md
+9
-7
CommonConstant.java
...om/github/tangyi/common/core/constant/CommonConstant.java
+6
-1
SysUtil.java
...ain/java/com/github/tangyi/common/core/utils/SysUtil.java
+9
-0
microservice-auth.sql
doc/deploy/mysql/microservice-auth.sql
+2
-2
microservice-exam.sql
doc/deploy/mysql/microservice-exam.sql
+4
-4
microservice-user.sql
doc/deploy/mysql/microservice-user.sql
+8
-10
ValidateCodeFilter.java
...com/github/tangyi/gateway/filters/ValidateCodeFilter.java
+1
-1
OauthClientMapper.xml
...h-service/src/main/resources/mapper/OauthClientMapper.xml
+10
-3
ExaminationInitConfig.java
.../com/github/tangyi/exam/config/ExaminationInitConfig.java
+1
-1
ExamRecordController.java
...m/github/tangyi/exam/controller/ExamRecordController.java
+4
-1
SubjectController.java
.../com/github/tangyi/exam/controller/SubjectController.java
+1
-4
AnswerService.java
...in/java/com/github/tangyi/exam/service/AnswerService.java
+113
-5
ExamRecordService.java
...ava/com/github/tangyi/exam/service/ExamRecordService.java
+0
-83
SubjectService.java
...n/java/com/github/tangyi/exam/service/SubjectService.java
+0
-52
AnswerMapper.xml
...l/exam-service/src/main/resources/mapper/AnswerMapper.xml
+10
-3
CourseMapper.xml
...l/exam-service/src/main/resources/mapper/CourseMapper.xml
+10
-3
ExamRecodeMapper.xml
...am-service/src/main/resources/mapper/ExamRecodeMapper.xml
+10
-3
ExaminationMapper.xml
...m-service/src/main/resources/mapper/ExaminationMapper.xml
+10
-3
IncorrectAnswerMapper.xml
...rvice/src/main/resources/mapper/IncorrectAnswerMapper.xml
+14
-5
KnowledgeMapper.xml
...xam-service/src/main/resources/mapper/KnowledgeMapper.xml
+10
-3
SubjectBankMapper.xml
...m-service/src/main/resources/mapper/SubjectBankMapper.xml
+10
-3
SubjectCategoryMapper.xml
...rvice/src/main/resources/mapper/SubjectCategoryMapper.xml
+10
-3
SubjectMapper.xml
.../exam-service/src/main/resources/mapper/SubjectMapper.xml
+10
-3
AttachmentMapper.xml
...er-service/src/main/resources/mapper/AttachmentMapper.xml
+10
-3
DeptMapper.xml
...mpl/user-service/src/main/resources/mapper/DeptMapper.xml
+10
-3
LogMapper.xml
...impl/user-service/src/main/resources/mapper/LogMapper.xml
+7
-3
MenuMapper.xml
...mpl/user-service/src/main/resources/mapper/MenuMapper.xml
+10
-3
RoleMapper.xml
...mpl/user-service/src/main/resources/mapper/RoleMapper.xml
+10
-3
UserMapper.xml
...mpl/user-service/src/main/resources/mapper/UserMapper.xml
+15
-4
No files found.
README.md
View file @
47c7fba0
...
...
@@ -122,13 +122,15 @@
## 后续
-
swagger修复
-
jwt只存userId这些关键信息,各服务鉴权需要重新换取token
-
重构部门角色,用户直接绑定角色,部门不关联角色
-
简答题,题库完善,智能组卷,在线学习,成绩排名
-
站内信
-
多租户
-
短信验证码,第三方登录
-
[
]
多租户
-
[
]
作业、考试、知识点管理、考试成绩排名、图表展示
-
[
]
学生签到、请假
-
[
]
短信验证码,第三方登录
-
[
]
swagger修复
-
[
]
站内信
-
[
x
]
jwt只存userId这些关键信息,各服务鉴权需要重新换取token
-
[
x
]
重构部门角色,用户直接绑定角色,部门不关联角色
-
[
x
]
简答题,题库完善,智能组卷,在线学习,成绩排名
## 问题反馈
...
...
common/common-core/src/main/java/com/github/tangyi/common/core/constant/CommonConstant.java
View file @
47c7fba0
...
...
@@ -4,7 +4,7 @@ package com.github.tangyi.common.core.constant;
* 公用常量
*
* @author tangyi
* @date 2018-08-23
-
12:00
* @date 2018-08-23
12:00
*/
public
class
CommonConstant
{
...
...
@@ -14,6 +14,11 @@ public class CommonConstant {
public
static
final
String
SYS_CODE
=
"EXAM"
;
/**
* 默认租户编号
*/
public
static
final
String
TENANT_CODE
=
"GITHUB"
;
/**
* JSON 资源
*/
public
static
final
String
CONTENT_TYPE
=
"application/json; charset=utf-8"
;
...
...
common/common-core/src/main/java/com/github/tangyi/common/core/utils/SysUtil.java
View file @
47c7fba0
...
...
@@ -32,4 +32,13 @@ public class SysUtil {
public
static
String
getSysCode
()
{
return
CommonConstant
.
SYS_CODE
;
}
/**
* 获取租户编号
*
* @return String
*/
public
static
String
getTenantCode
()
{
return
CommonConstant
.
TENANT_CODE
;
}
}
doc/deploy/mysql/microservice-auth.sql
View file @
47c7fba0
...
...
@@ -11,7 +11,7 @@
Target Server Version : 50617
File Encoding : 65001
Date:
19/05/2019 21:43:23
Date:
22/05/2019 22:21:34
*/
SET
NAMES
utf8mb4
;
...
...
@@ -48,6 +48,6 @@ CREATE TABLE `oauth_client_details` (
-- ----------------------------
-- Records of oauth_client_details
-- ----------------------------
INSERT
INTO
`oauth_client_details`
VALUES
(
'471037a0c1be4df99b40e3f84141cc56'
,
'web_app'
,
NULL
,
'spring-microservice-exam-secret'
,
'$2a$10$IWLD8r7e0rKMW.ZhGsGCUO./MZUNDKudIswSToa9puXJwty.h59.u'
,
'read,write'
,
'password,authorization_code,refresh_token,implicit'
,
NULL
,
NULL
,
'3
0'
,
'3600'
,
NULL
,
NULL
,
'admin'
,
'2019-03-30 23:43:07'
,
'admin'
,
'2019-05-19 20:28:5
8'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`oauth_client_details`
VALUES
(
'471037a0c1be4df99b40e3f84141cc56'
,
'web_app'
,
NULL
,
'spring-microservice-exam-secret'
,
'$2a$10$IWLD8r7e0rKMW.ZhGsGCUO./MZUNDKudIswSToa9puXJwty.h59.u'
,
'read,write'
,
'password,authorization_code,refresh_token,implicit'
,
NULL
,
NULL
,
'3
600'
,
'21600'
,
NULL
,
NULL
,
'admin'
,
'2019-03-30 23:43:07'
,
'admin'
,
'2019-05-22 22:16:1
8'
,
'0'
,
'EXAM'
,
NULL
);
SET
FOREIGN_KEY_CHECKS
=
1
;
doc/deploy/mysql/microservice-exam.sql
View file @
47c7fba0
...
...
@@ -11,7 +11,7 @@
Target Server Version : 50617
File Encoding : 65001
Date:
19/05/2019 21:43:15
Date:
22/05/2019 22:21:26
*/
SET
NAMES
utf8mb4
;
...
...
@@ -66,7 +66,7 @@ CREATE TABLE `course` (
-- Records of course
-- ----------------------------
INSERT
INTO
`course`
VALUES
(
'571449673634680832'
,
'大学语文'
,
'信息学院'
,
'软件工程'
,
'陈老师'
,
'大学语文'
,
'admin'
,
'2019-04-26 21:36:59'
,
'admin'
,
'2019-04-26 21:36:59'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`course`
VALUES
(
'573843243792470016'
,
'计算机基础'
,
'信息学院'
,
'软件工程'
,
''
,
''
,
'admin'
,
'2019-05-03 12:08:10'
,
'admin'
,
'2019-05-
03 12:08:10
'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`course`
VALUES
(
'573843243792470016'
,
'计算机基础'
,
'信息学院'
,
'软件工程'
,
''
,
''
,
'admin'
,
'2019-05-03 12:08:10'
,
'admin'
,
'2019-05-
22 22:17:41
'
,
'0'
,
'EXAM'
,
NULL
);
-- ----------------------------
-- Table structure for exam_record
...
...
@@ -134,7 +134,7 @@ INSERT INTO `examination` VALUES ('573841891515305984', '全国计算机统考
INSERT
INTO
`examination`
VALUES
(
'576869700143812608'
,
'测试1'
,
'0'
,
'323'
,
'2019-05-16 20:37'
,
'2019-05-16 23:34'
,
''
,
'20'
,
'3'
,
'0'
,
'group1/M00/00/00/rBAAClzXxROAC5s0AADGqyYhFOI619.jpg'
,
'577147187818008576'
,
'32323'
,
'23232'
,
'571449673634680832'
,
'323'
,
'admin'
,
'2019-05-11 20:34:14'
,
'admin'
,
'2019-05-16 22:19:45'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`examination`
VALUES
(
'577225388753817600'
,
'测试2'
,
'0'
,
'22'
,
'2019-05-14 20:07'
,
'2019-05-14 23:00'
,
''
,
'2'
,
'0'
,
'0'
,
''
,
NULL
,
'22'
,
'2'
,
'571449673634680832'
,
'2222'
,
'admin'
,
'2019-05-12 20:07:37'
,
'admin'
,
'2019-05-14 21:02:19'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`examination`
VALUES
(
'577225454889603072'
,
'测试3'
,
'0'
,
'33'
,
'2019-05-12 20:07'
,
'2019-05-13 00:00'
,
''
,
'3'
,
'0'
,
'0'
,
'group1/M00/00/00/rBAAClzYEqeAQRfVAAB2nqimI80762.jpg'
,
'577230488272506880'
,
'3'
,
'3'
,
'573843243792470016'
,
''
,
'admin'
,
'2019-05-12 20:07:52'
,
'admin'
,
'2019-05-12 20:27:53'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`examination`
VALUES
(
'577235497684963328'
,
'测试4'
,
'0'
,
'33'
,
'2019-05-12 20:47'
,
'2019-05-13 20:47'
,
''
,
'3'
,
NULL
,
'0'
,
''
,
NULL
,
'3333'
,
'3'
,
''
,
'333'
,
'admin'
,
'2019-05-12 20:47:47'
,
'admin'
,
'2019-05-12 20:47:47
'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`examination`
VALUES
(
'577235497684963328'
,
'测试4'
,
'0'
,
'33'
,
'2019-05-12 20:47'
,
'2019-05-13 20:47'
,
''
,
'3'
,
'0'
,
'0'
,
''
,
NULL
,
'3333'
,
'3'
,
''
,
'333'
,
'admin'
,
'2019-05-12 20:47:47'
,
'admin'
,
'2019-05-22 22:17:49
'
,
'0'
,
'EXAM'
,
NULL
);
-- ----------------------------
-- Table structure for incorrect_answer
...
...
@@ -273,7 +273,7 @@ CREATE TABLE `subject_bank` (
-- ----------------------------
-- Records of subject_bank
-- ----------------------------
INSERT
INTO
`subject_bank`
VALUES
(
'571463421858549760'
,
'571450070935932928'
,
1
,
'若下列城市都安装了“风光互补路灯”,北半球夏至日这一天太阳能板左右摆动幅度最大的地点是'
,
'0'
,
''
,
'哈尔滨'
,
'北京'
,
'广州'
,
'广州'
,
''
,
''
,
'A'
,
4
,
''
,
'2'
,
'admin'
,
'2019-04-26 22:31:37'
,
'admin'
,
'2019-0
4-26 22:33:35
'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`subject_bank`
VALUES
(
'571463421858549760'
,
'571450070935932928'
,
1
,
'若下列城市都安装了“风光互补路灯”,北半球夏至日这一天太阳能板左右摆动幅度最大的地点是'
,
'0'
,
''
,
'哈尔滨'
,
'北京'
,
'广州'
,
'广州'
,
''
,
''
,
'A'
,
4
,
''
,
'2'
,
'admin'
,
'2019-04-26 22:31:37'
,
'admin'
,
'2019-0
5-22 22:17:59
'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`subject_bank`
VALUES
(
'571467576304078848'
,
'571450070935932928'
,
2
,
'干热岩主要属于'
,
'0'
,
''
,
'岩浆'
,
'喷出岩'
,
'沉积岩'
,
'侵入岩'
,
''
,
''
,
'B'
,
4
,
''
,
'2'
,
'admin'
,
'2019-04-26 22:48:07'
,
'admin'
,
'2019-04-26 22:48:07'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`subject_bank`
VALUES
(
'571467771968360448'
,
'571450070935932928'
,
3
,
'我国干热岩最主要分布在'
,
'0'
,
''
,
'东南沿海'
,
'华北地区'
,
'西北内陆'
,
'青藏高原'
,
''
,
''
,
'D'
,
4
,
''
,
'2'
,
'admin'
,
'2019-04-26 22:48:54'
,
'admin'
,
'2019-04-26 22:52:01'
,
'0'
,
'EXAM'
,
NULL
);
INSERT
INTO
`subject_bank`
VALUES
(
'571467945222475776'
,
'571450070935932928'
,
4
,
'与传统地热资源相比,干热岩'
,
'0'
,
''
,
'开发难度小、成本低'
,
'埋藏较浅、分布广'
,
'无季节变化、污染少'
,
'产业链短、效率低'
,
''
,
''
,
'C'
,
4
,
''
,
'2'
,
'admin'
,
'2019-04-26 22:49:35'
,
'admin'
,
'2019-04-26 22:52:15'
,
'0'
,
'EXAM'
,
NULL
);
...
...
doc/deploy/mysql/microservice-user.sql
View file @
47c7fba0
...
...
@@ -11,7 +11,7 @@
Target Server Version : 50617
File Encoding : 65001
Date:
19/05/2019 21:43:07
Date:
22/05/2019 22:21:43
*/
SET
NAMES
utf8mb4
;
...
...
@@ -65,7 +65,7 @@ CREATE TABLE `sys_dept` (
-- ----------------------------
-- Records of sys_dept
-- ----------------------------
INSERT
INTO
`sys_dept`
VALUES
(
'571347099191480320'
,
'测试部门'
,
'-1'
,
'30'
,
'admin'
,
'2019-04-26 14:49:23'
,
'admin'
,
'2019-05-
19 11:54:19
'
,
'0'
,
'EXAM'
,
'0'
,
'测试部门'
,
'管理员'
,
NULL
);
INSERT
INTO
`sys_dept`
VALUES
(
'571347099191480320'
,
'测试部门'
,
'-1'
,
'30'
,
'admin'
,
'2019-04-26 14:49:23'
,
'admin'
,
'2019-05-
22 22:15:31
'
,
'0'
,
'EXAM'
,
'0'
,
'测试部门'
,
'管理员'
,
NULL
);
-- ----------------------------
-- Table structure for sys_log
...
...
@@ -161,7 +161,7 @@ INSERT INTO `sys_menu` VALUES ('571362994005610496', 'zipkin监控', 'monitor:li
INSERT
INTO
`sys_menu`
VALUES
(
'571363268497641472'
,
'服务监控'
,
'monitor:admin'
,
'/api/monitor/**'
,
'571361163502292992'
,
''
,
'33'
,
'0'
,
'admin'
,
'2019-04-26 15:53:38'
,
'admin'
,
'2019-04-26 15:53:38'
,
'0'
,
'EXAM'
,
NULL
,
'http://localhost:8085/admin'
,
NULL
,
NULL
,
NULL
);
INSERT
INTO
`sys_menu`
VALUES
(
'571363537549660160'
,
'接口文档'
,
'monitor:document'
,
'/api/monitor/**'
,
'571361163502292992'
,
''
,
'34'
,
'0'
,
'admin'
,
'2019-04-26 15:54:42'
,
'admin'
,
'2019-04-26 15:54:42'
,
'0'
,
'EXAM'
,
NULL
,
'http://localhost:8000/swagger-ui.html'
,
NULL
,
NULL
,
NULL
);
INSERT
INTO
`sys_menu`
VALUES
(
'571364115214372864'
,
'删除日志'
,
'monitor:log:del'
,
NULL
,
'571361526066319360'
,
''
,
'30'
,
'1'
,
'admin'
,
'2019-04-26 15:57:00'
,
'admin'
,
'2019-04-26 15:57:00'
,
'0'
,
'EXAM'
,
NULL
,
NULL
,
NULL
,
'删除日志'
,
NULL
);
INSERT
INTO
`sys_menu`
VALUES
(
'571365178965364736'
,
'首页'
,
'dashboard'
,
'/'
,
'-1'
,
'dashboard'
,
'0'
,
'0'
,
'admin'
,
'2019-04-26 16:01:14'
,
'admin'
,
'2019-05-
19 12:25:51
'
,
'0'
,
'EXAM'
,
'Layout'
,
'/dashboard'
,
NULL
,
'首页'
,
NULL
);
INSERT
INTO
`sys_menu`
VALUES
(
'571365178965364736'
,
'首页'
,
'dashboard'
,
'/'
,
'-1'
,
'dashboard'
,
'0'
,
'0'
,
'admin'
,
'2019-04-26 16:01:14'
,
'admin'
,
'2019-05-
22 22:15:49
'
,
'0'
,
'EXAM'
,
'Layout'
,
'/dashboard'
,
NULL
,
'首页'
,
NULL
);
INSERT
INTO
`sys_menu`
VALUES
(
'571367565360762880'
,
'系统管理'
,
'sys'
,
'/api/user/v1/**'
,
'-1'
,
'component'
,
'1'
,
'0'
,
'admin'
,
'2019-04-26 16:10:43'
,
'admin'
,
'2019-05-15 23:51:07'
,
'0'
,
'EXAM'
,
'Layout'
,
'/sys'
,
NULL
,
'系统管理'
,
NULL
);
INSERT
INTO
`sys_menu`
VALUES
(
'571367969767165952'
,
'用户管理'
,
'sys:user'
,
'/api/user/v1/user/**'
,
'571367565360762880'
,
''
,
'2'
,
'0'
,
'admin'
,
'2019-04-26 16:12:19'
,
'admin'
,
'2019-04-26 16:12:19'
,
'0'
,
'EXAM'
,
'views/sys/user'
,
'user'
,
NULL
,
'用户管理'
,
NULL
);
INSERT
INTO
`sys_menu`
VALUES
(
'571368181252362240'
,
'部门管理'
,
'sys:dept'
,
'/api/user/v1/dept/**'
,
'571367565360762880'
,
''
,
'8'
,
'0'
,
'admin'
,
'2019-04-26 16:13:09'
,
'admin'
,
'2019-04-26 16:13:09'
,
'0'
,
'EXAM'
,
'views/sys/dept'
,
'dept'
,
NULL
,
'部门管理'
,
NULL
);
...
...
@@ -221,7 +221,7 @@ CREATE TABLE `sys_role` (
-- ----------------------------
INSERT
INTO
`sys_role`
VALUES
(
'571347202849509376'
,
'管理员'
,
'role_admin'
,
'管理员'
,
'0'
,
'admin'
,
'2019-04-26 14:49:48'
,
'admin'
,
'2019-04-26 14:49:48'
,
'0'
,
'EXAM'
,
'0'
,
NULL
);
INSERT
INTO
`sys_role`
VALUES
(
'571347272906969088'
,
'教师'
,
'role_teacher'
,
'教师'
,
'0'
,
'admin'
,
'2019-04-26 14:50:04'
,
'admin'
,
'2019-05-19 17:40:08'
,
'0'
,
'EXAM'
,
'0'
,
NULL
);
INSERT
INTO
`sys_role`
VALUES
(
'571347357346697216'
,
'普通用户'
,
'role_user'
,
'普通用户'
,
'1'
,
'admin'
,
'2019-04-26 14:50:25'
,
'admin'
,
'2019-05-
19 17:38:15
'
,
'0'
,
'EXAM'
,
'0'
,
NULL
);
INSERT
INTO
`sys_role`
VALUES
(
'571347357346697216'
,
'普通用户'
,
'role_user'
,
'普通用户'
,
'1'
,
'admin'
,
'2019-04-26 14:50:25'
,
'admin'
,
'2019-05-
22 22:15:42
'
,
'0'
,
'EXAM'
,
'0'
,
NULL
);
-- ----------------------------
-- Table structure for sys_role_menu
...
...
@@ -369,10 +369,10 @@ INSERT INTO `sys_role_menu` VALUES ('577962109418213434', '571347272906969088',
INSERT
INTO
`sys_role_menu`
VALUES
(
'577962109418213435'
,
'571347272906969088'
,
'571348650370928640'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'577962109418213436'
,
'571347272906969088'
,
'571349816924311552'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'577962109418213437'
,
'571347272906969088'
,
'571350099653955584'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
78366680363831296
'
,
'571347357346697216'
,
'571365178965364736'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
78366680363831297
'
,
'571347357346697216'
,
'571348650370928640'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
78366680363831298
'
,
'571347357346697216'
,
'571349816924311552'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
78366680363831299
'
,
'571347357346697216'
,
'571350099653955584'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
80882321092251648
'
,
'571347357346697216'
,
'571365178965364736'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
80882321092251649
'
,
'571347357346697216'
,
'571348650370928640'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
80882321092251650
'
,
'571347357346697216'
,
'571349816924311552'
);
INSERT
INTO
`sys_role_menu`
VALUES
(
'5
80882321092251651
'
,
'571347357346697216'
,
'571350099653955584'
);
-- ----------------------------
-- Table structure for sys_route
...
...
@@ -438,7 +438,6 @@ CREATE TABLE `sys_user` (
INSERT
INTO
`sys_user`
VALUES
(
'571346919268421632'
,
'管理员'
,
'admin'
,
'$2a$10$6mW2B1GMnGLQejJ4QXb2ke.Oqu3cAUYWxX7rgsrO/.SP.Na4QFCwq'
,
NULL
,
'15512345678'
,
''
,
''
,
'15512345678@qq.com'
,
'0'
,
'2019-04-26'
,
'0'
,
'admin'
,
'2019-04-26 14:48:40'
,
'admin'
,
'2019-04-26 14:51:13'
,
0
,
'EXAM'
,
'管理员'
,
'571347099191480320'
,
NULL
);
INSERT
INTO
`sys_user`
VALUES
(
'571347698284892160'
,
'林老师'
,
'teacher'
,
'$2a$10$PvRqajVApOtseEy8jJCzU.AnvrtoE5ecwQHQ9zuf.ezYnlFTF1Vm2'
,
NULL
,
'155123456789'
,
NULL
,
NULL
,
'155123456789@qq.com'
,
'0'
,
'2019-04-26'
,
'0'
,
'admin'
,
'2019-04-26 14:51:46'
,
'admin'
,
'2019-05-16 22:07:08'
,
0
,
'EXAM'
,
'林老师'
,
'571347099191480320'
,
NULL
);
INSERT
INTO
`sys_user`
VALUES
(
'571347817814167552'
,
'梁同学'
,
'student'
,
'$2a$10$mtmSUZJwfgtqlK5J/wu9CeWAPhfr4j.k/C6njPFUzNht.GEw1H0r.'
,
NULL
,
'155123456789'
,
NULL
,
NULL
,
'155123456789@qq.com'
,
'0'
,
'2019-04-26'
,
'0'
,
'admin'
,
'2019-04-26 14:52:14'
,
'admin'
,
'2019-05-16 22:07:04'
,
0
,
'EXAM'
,
'梁同学'
,
'571347099191480320'
,
NULL
);
INSERT
INTO
`sys_user`
VALUES
(
'578707569342812160'
,
'1'
,
'1'
,
'$2a$10$D0ue0eJrn33Bd1Z.6XMKpeixG.F7GKKHHEvQAYw4klJF/vwoCWoHC'
,
NULL
,
'323'
,
NULL
,
NULL
,
NULL
,
'0'
,
'2019-05-30'
,
'0'
,
'admin'
,
'2019-05-16 22:17:16'
,
'admin'
,
'2019-05-16 22:17:16'
,
0
,
'EXAM'
,
'3233'
,
'571347099191480320'
,
NULL
);
-- ----------------------------
-- Table structure for sys_user_role
...
...
@@ -457,6 +456,5 @@ CREATE TABLE `sys_user_role` (
INSERT
INTO
`sys_user_role`
VALUES
(
'571347558564237312'
,
'571346919268421632'
,
'571347202849509376'
);
INSERT
INTO
`sys_user_role`
VALUES
(
'578705002672033792'
,
'571347817814167552'
,
'571347272906969088'
);
INSERT
INTO
`sys_user_role`
VALUES
(
'578705020137115648'
,
'571347698284892160'
,
'571347272906969088'
);
INSERT
INTO
`sys_user_role`
VALUES
(
'578707569720299520'
,
'578707569342812160'
,
'571347357346697216'
);
SET
FOREIGN_KEY_CHECKS
=
1
;
gateway-service/src/main/java/com/github/tangyi/gateway/filters/ValidateCodeFilter.java
View file @
47c7fba0
...
...
@@ -29,7 +29,7 @@ import java.net.URI;
@Component
public
class
ValidateCodeFilter
implements
GlobalFilter
,
Ordered
{
private
final
RedisTemplate
<
String
,
String
>
redisTemplate
;
private
final
RedisTemplate
redisTemplate
;
@Override
public
Mono
<
Void
>
filter
(
ServerWebExchange
exchange
,
GatewayFilterChain
chain
)
{
...
...
service-api-impl/auth-service/src/main/resources/mapper/OauthClientMapper.xml
View file @
47c7fba0
...
...
@@ -20,6 +20,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"oauthClientColumns"
>
...
...
@@ -41,7 +42,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -49,6 +51,9 @@
<if
test=
"clientId != null and clientId != ''"
>
and a.client_id like #{clientId}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"oauthClientResultMap"
>
...
...
@@ -97,7 +102,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) VALUES (
#{id},
#{clientId},
...
...
@@ -117,7 +123,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
)
</insert>
...
...
service-api-impl/exam-service/src/main/java/com/github/tangyi/exam/config/ExaminationInitConfig.java
View file @
47c7fba0
...
...
@@ -24,7 +24,7 @@ import java.util.stream.Stream;
@Configuration
public
class
ExaminationInitConfig
{
private
final
RedisTemplate
<
String
,
Examination
>
redisTemplate
;
private
final
RedisTemplate
redisTemplate
;
private
final
ExaminationService
examinationService
;
...
...
service-api-impl/exam-service/src/main/java/com/github/tangyi/exam/controller/ExamRecordController.java
View file @
47c7fba0
...
...
@@ -15,6 +15,7 @@ import com.github.tangyi.exam.api.dto.ExamRecordDto;
import
com.github.tangyi.exam.api.dto.StartExamDto
;
import
com.github.tangyi.exam.api.module.ExamRecord
;
import
com.github.tangyi.exam.api.module.Examination
;
import
com.github.tangyi.exam.service.AnswerService
;
import
com.github.tangyi.exam.service.ExamRecordService
;
import
com.github.tangyi.exam.service.ExaminationService
;
import
com.github.tangyi.exam.utils.ExamRecordUtil
;
...
...
@@ -60,6 +61,8 @@ public class ExamRecordController extends BaseController {
private
final
UserServiceClient
userServiceClient
;
private
final
AnswerService
answerService
;
/**
* 根据ID获取
*
...
...
@@ -356,7 +359,7 @@ public class ExamRecordController extends BaseController {
@PostMapping
(
"start"
)
@Log
(
"开始考试"
)
public
ResponseBean
<
StartExamDto
>
start
(
@RequestBody
ExamRecord
examRecord
)
{
return
new
ResponseBean
<>(
examRecord
Service
.
start
(
examRecord
));
return
new
ResponseBean
<>(
answer
Service
.
start
(
examRecord
));
}
/**
...
...
service-api-impl/exam-service/src/main/java/com/github/tangyi/exam/controller/SubjectController.java
View file @
47c7fba0
...
...
@@ -12,7 +12,6 @@ import com.github.tangyi.exam.api.dto.SubjectDto;
import
com.github.tangyi.exam.api.module.Examination
;
import
com.github.tangyi.exam.api.module.Subject
;
import
com.github.tangyi.exam.service.AnswerService
;
import
com.github.tangyi.exam.service.ExamRecordService
;
import
com.github.tangyi.exam.service.ExaminationService
;
import
com.github.tangyi.exam.service.SubjectService
;
import
com.github.tangyi.exam.utils.SubjectUtil
;
...
...
@@ -52,8 +51,6 @@ public class SubjectController extends BaseController {
private
final
AnswerService
answerService
;
private
final
ExamRecordService
examRecordService
;
private
final
ExaminationService
examinationService
;
/**
...
...
@@ -330,6 +327,6 @@ public class SubjectController extends BaseController {
public
ResponseBean
<
SubjectDto
>
subjectAnswer
(
@RequestParam
(
"serialNumber"
)
String
serialNumber
,
@RequestParam
(
"examRecordId"
)
String
examRecordId
,
@RequestParam
(
value
=
"userId"
,
required
=
false
)
String
userId
)
{
return
new
ResponseBean
<>(
subject
Service
.
subjectAnswer
(
serialNumber
,
examRecordId
,
userId
));
return
new
ResponseBean
<>(
answer
Service
.
subjectAnswer
(
serialNumber
,
examRecordId
,
userId
));
}
}
service-api-impl/exam-service/src/main/java/com/github/tangyi/exam/service/AnswerService.java
View file @
47c7fba0
package
com
.
github
.
tangyi
.
exam
.
service
;
import
com.github.tangyi.common.core.constant.MqConstant
;
import
com.github.tangyi.common.core.exceptions.CommonException
;
import
com.github.tangyi.common.core.service.CrudService
;
import
com.github.tangyi.common.core.utils.SysUtil
;
import
com.github.tangyi.common.security.utils.SecurityUtil
;
import
com.github.tangyi.exam.api.constants.ExamRecordConstant
;
import
com.github.tangyi.exam.api.constants.SubjectConstant
;
import
com.github.tangyi.exam.api.dto.StartExamDto
;
import
com.github.tangyi.exam.api.dto.SubjectDto
;
import
com.github.tangyi.exam.api.module.Answer
;
import
com.github.tangyi.exam.api.module.ExamRecord
;
import
com.github.tangyi.exam.api.module.IncorrectAnswer
;
import
com.github.tangyi.exam.api.module.Subject
;
import
com.github.tangyi.exam.api.module.*
;
import
com.github.tangyi.exam.mapper.AnswerMapper
;
import
lombok.AllArgsConstructor
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.collections4.CollectionUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.springframework.amqp.core.AmqpTemplate
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.cache.annotation.Cacheable
;
import
org.springframework.stereotype.Service
;
...
...
@@ -43,6 +44,8 @@ public class AnswerService extends CrudService<AnswerMapper, Answer> {
private
final
ExamRecordService
examRecordService
;
private
final
ExaminationService
examinationService
;
/**
* 查找答题
*
...
...
@@ -148,7 +151,7 @@ public class AnswerService extends CrudService<AnswerMapper, Answer> {
answer
.
setCommonValue
(
SecurityUtil
.
getCurrentUsername
(),
SysUtil
.
getSysCode
());
this
.
insert
(
answer
);
}
return
subjectService
.
subjectAnswer
(
answer
.
getSerialNumber
(),
answer
.
getExamRecordId
(),
answer
.
getUserId
());
return
this
.
subjectAnswer
(
answer
.
getSerialNumber
(),
answer
.
getExamRecordId
(),
answer
.
getUserId
());
}
/**
...
...
@@ -269,4 +272,109 @@ public class AnswerService extends CrudService<AnswerMapper, Answer> {
log
.
debug
(
"异步提交答卷成功,提交人:{},考试ID:{},耗时:{}ms"
,
currentUsername
,
answer
.
getExaminationId
(),
System
.
currentTimeMillis
()
-
start
);
return
success
;
}
/**
* 开始考试
*
* @param examRecord examRecord
* @return StartExamDto
* @author tangyi
* @date 2019/04/30 23:06
*/
@Transactional
public
StartExamDto
start
(
ExamRecord
examRecord
)
{
StartExamDto
startExamDto
=
new
StartExamDto
();
String
currentUsername
=
SecurityUtil
.
getCurrentUsername
(),
applicationCode
=
SysUtil
.
getSysCode
();
// 创建考试记录
if
(
StringUtils
.
isEmpty
(
examRecord
.
getExaminationId
()))
throw
new
CommonException
(
"参数校验失败,考试id为空!"
);
if
(
StringUtils
.
isEmpty
(
examRecord
.
getUserId
()))
throw
new
CommonException
(
"参数校验失败,用户id为空!"
);
Examination
examination
=
new
Examination
();
examination
.
setId
(
examRecord
.
getExaminationId
());
// 查找考试信息
examination
=
examinationService
.
get
(
examination
);
if
(
examination
!=
null
)
{
examRecord
.
setExaminationName
(
examination
.
getExaminationName
());
examRecord
.
setCourseId
(
examination
.
getCourseId
());
}
examRecord
.
setCommonValue
(
currentUsername
,
applicationCode
);
examRecord
.
setStartTime
(
examRecord
.
getCreateDate
());
// 默认未提交状态
examRecord
.
setSubmitStatus
(
ExamRecordConstant
.
STATUS_NOT_SUBMITTED
);
// 保存考试记录
if
(
examRecordService
.
insert
(
examRecord
)
>
0
)
{
startExamDto
.
setExamination
(
examination
);
startExamDto
.
setExamRecord
(
examRecord
);
// 封装dto
SubjectDto
subjectDto
=
new
SubjectDto
();
startExamDto
.
setSubjectDto
(
subjectDto
);
// 查找第一题
Subject
subject
=
new
Subject
();
subject
.
setExaminationId
(
examRecord
.
getExaminationId
());
subject
.
setSerialNumber
(
SubjectConstant
.
DEFAULT_SERIAL_NUMBER
);
subject
=
subjectService
.
getByExaminationIdAndSerialNumber
(
subject
);
if
(
subject
==
null
)
throw
new
CommonException
(
"没有第一题"
);
// 获取题目信息
BeanUtils
.
copyProperties
(
subject
,
subjectDto
);
// 创建第一题的答题
Answer
answer
=
new
Answer
();
answer
.
setCommonValue
(
currentUsername
,
applicationCode
);
answer
.
setUserId
(
examRecord
.
getUserId
());
answer
.
setExaminationId
(
examRecord
.
getExaminationId
());
answer
.
setExamRecordId
(
examRecord
.
getId
());
answer
.
setSubjectId
(
subject
.
getId
());
// 默认题号为1
answer
.
setSerialNumber
(
subject
.
getSerialNumber
());
// 保存答题
this
.
save
(
answer
);
subjectDto
.
setAnswer
(
answer
);
}
return
startExamDto
;
}
/**
* 查询题目和答题
*
* @param serialNumber serialNumber
* @param examRecordId examRecordId
* @param userId userId
* @return SubjectDto
* @author tangyi
* @date 2019/04/30 17:10
*/
@Transactional
public
SubjectDto
subjectAnswer
(
String
serialNumber
,
String
examRecordId
,
String
userId
)
{
SubjectDto
subjectDto
=
null
;
ExamRecord
examRecord
=
new
ExamRecord
();
examRecord
.
setId
(
examRecordId
);
// 查找考试记录
examRecord
=
examRecordService
.
get
(
examRecord
);
if
(
examRecord
!=
null
)
{
// 查找题目
Subject
subject
=
new
Subject
();
subject
.
setExaminationId
(
examRecord
.
getExaminationId
());
subject
.
setSerialNumber
(
serialNumber
);
subject
=
subjectService
.
getByExaminationIdAndSerialNumber
(
subject
);
if
(
subject
!=
null
)
{
subjectDto
=
new
SubjectDto
();
// 查找答题
Answer
answer
=
new
Answer
();
answer
.
setSubjectId
(
subject
.
getId
());
answer
.
setExaminationId
(
examRecord
.
getExaminationId
());
answer
.
setExamRecordId
(
examRecordId
);
answer
.
setUserId
(
userId
);
Answer
userAnswer
=
this
.
getAnswer
(
answer
);
// 设置答题
if
(
userAnswer
!=
null
)
subjectDto
.
setAnswer
(
userAnswer
);
BeanUtils
.
copyProperties
(
subject
,
subjectDto
);
subjectDto
.
setExaminationRecordId
(
examRecordId
);
}
}
return
subjectDto
;
}
}
service-api-impl/exam-service/src/main/java/com/github/tangyi/exam/service/ExamRecordService.java
View file @
47c7fba0
package
com
.
github
.
tangyi
.
exam
.
service
;
import
com.github.tangyi.common.core.exceptions.CommonException
;
import
com.github.tangyi.common.core.service.CrudService
;
import
com.github.tangyi.common.core.utils.SysUtil
;
import
com.github.tangyi.common.security.utils.SecurityUtil
;
import
com.github.tangyi.exam.api.constants.ExamRecordConstant
;
import
com.github.tangyi.exam.api.constants.SubjectConstant
;
import
com.github.tangyi.exam.api.dto.StartExamDto
;
import
com.github.tangyi.exam.api.dto.SubjectDto
;
import
com.github.tangyi.exam.api.module.Answer
;
import
com.github.tangyi.exam.api.module.ExamRecord
;
import
com.github.tangyi.exam.api.module.Examination
;
import
com.github.tangyi.exam.api.module.Subject
;
import
com.github.tangyi.exam.mapper.ExamRecordMapper
;
import
lombok.AllArgsConstructor
;
import
org.apache.commons.lang.StringUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.cache.annotation.Cacheable
;
import
org.springframework.stereotype.Service
;
...
...
@@ -31,14 +19,6 @@ import org.springframework.transaction.annotation.Transactional;
@Service
public
class
ExamRecordService
extends
CrudService
<
ExamRecordMapper
,
ExamRecord
>
{
private
final
SubjectService
subjectService
;
private
final
AnswerService
answerService
;
private
final
ExamRecordService
examRecordService
;
private
final
ExaminationService
examinationService
;
/**
* 查询考试记录
*
...
...
@@ -109,67 +89,4 @@ public class ExamRecordService extends CrudService<ExamRecordMapper, ExamRecord>
public
int
deleteAll
(
String
[]
ids
)
{
return
super
.
deleteAll
(
ids
);
}
/**
* 开始考试
*
* @param examRecord examRecord
* @return StartExamDto
* @author tangyi
* @date 2019/04/30 23:06
*/
@Transactional
public
StartExamDto
start
(
ExamRecord
examRecord
)
{
StartExamDto
startExamDto
=
new
StartExamDto
();
String
currentUsername
=
SecurityUtil
.
getCurrentUsername
(),
applicationCode
=
SysUtil
.
getSysCode
();
// 创建考试记录
if
(
StringUtils
.
isEmpty
(
examRecord
.
getExaminationId
()))
throw
new
CommonException
(
"参数校验失败,考试id为空!"
);
if
(
StringUtils
.
isEmpty
(
examRecord
.
getUserId
()))
throw
new
CommonException
(
"参数校验失败,用户id为空!"
);
Examination
examination
=
new
Examination
();
examination
.
setId
(
examRecord
.
getExaminationId
());
// 查找考试信息
examination
=
examinationService
.
get
(
examination
);
if
(
examination
!=
null
)
{
examRecord
.
setExaminationName
(
examination
.
getExaminationName
());
examRecord
.
setCourseId
(
examination
.
getCourseId
());
}
examRecord
.
setCommonValue
(
currentUsername
,
applicationCode
);
examRecord
.
setStartTime
(
examRecord
.
getCreateDate
());
// 默认未提交状态
examRecord
.
setSubmitStatus
(
ExamRecordConstant
.
STATUS_NOT_SUBMITTED
);
// 保存考试记录
if
(
examRecordService
.
insert
(
examRecord
)
>
0
)
{
startExamDto
.
setExamination
(
examination
);
startExamDto
.
setExamRecord
(
examRecord
);
// 封装dto
SubjectDto
subjectDto
=
new
SubjectDto
();
startExamDto
.
setSubjectDto
(
subjectDto
);
// 查找第一题
Subject
subject
=
new
Subject
();
subject
.
setExaminationId
(
examRecord
.
getExaminationId
());
subject
.
setSerialNumber
(
SubjectConstant
.
DEFAULT_SERIAL_NUMBER
);
subject
=
subjectService
.
getByExaminationIdAndSerialNumber
(
subject
);
if
(
subject
==
null
)
throw
new
CommonException
(
"没有第一题"
);
// 获取题目信息
BeanUtils
.
copyProperties
(
subject
,
subjectDto
);
// 创建第一题的答题
Answer
answer
=
new
Answer
();
answer
.
setCommonValue
(
currentUsername
,
applicationCode
);
answer
.
setUserId
(
examRecord
.
getUserId
());
answer
.
setExaminationId
(
examRecord
.
getExaminationId
());
answer
.
setExamRecordId
(
examRecord
.
getId
());
answer
.
setSubjectId
(
subject
.
getId
());
// 默认题号为1
answer
.
setSerialNumber
(
subject
.
getSerialNumber
());
// 保存答题
answerService
.
save
(
answer
);
subjectDto
.
setAnswer
(
answer
);
}
return
startExamDto
;
}
}
service-api-impl/exam-service/src/main/java/com/github/tangyi/exam/service/SubjectService.java
View file @
47c7fba0
package
com
.
github
.
tangyi
.
exam
.
service
;
import
com.github.tangyi.common.core.service.CrudService
;
import
com.github.tangyi.exam.api.dto.SubjectDto
;
import
com.github.tangyi.exam.api.module.Answer
;
import
com.github.tangyi.exam.api.module.ExamRecord
;
import
com.github.tangyi.exam.api.module.Subject
;
import
com.github.tangyi.exam.mapper.SubjectMapper
;
import
lombok.AllArgsConstructor
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.cache.annotation.CacheEvict
;
import
org.springframework.cache.annotation.Cacheable
;
import
org.springframework.stereotype.Service
;
...
...
@@ -19,14 +14,9 @@ import org.springframework.transaction.annotation.Transactional;
* @author tangyi
* @date 2018/11/8 21:23
*/
@AllArgsConstructor
@Service
public
class
SubjectService
extends
CrudService
<
SubjectMapper
,
Subject
>
{
private
final
ExamRecordService
examRecordService
;
private
final
AnswerService
answerService
;
/**
* 查找题目
*
...
...
@@ -123,46 +113,4 @@ public class SubjectService extends CrudService<SubjectMapper, Subject> {
public
int
deleteAll
(
String
[]
ids
)
{
return
super
.
deleteAll
(
ids
);
}
/**
* 查询题目和答题
*
* @param serialNumber serialNumber
* @param examRecordId examRecordId
* @param userId userId
* @return SubjectDto
* @author tangyi
* @date 2019/04/30 17:10
*/
@Transactional
public
SubjectDto
subjectAnswer
(
String
serialNumber
,
String
examRecordId
,
String
userId
)
{
SubjectDto
subjectDto
=
null
;
ExamRecord
examRecord
=
new
ExamRecord
();
examRecord
.
setId
(
examRecordId
);
// 查找考试记录
examRecord
=
examRecordService
.
get
(
examRecord
);
if
(
examRecord
!=
null
)
{
// 查找题目
Subject
subject
=
new
Subject
();
subject
.
setExaminationId
(
examRecord
.
getExaminationId
());
subject
.
setSerialNumber
(
serialNumber
);
subject
=
this
.
getByExaminationIdAndSerialNumber
(
subject
);
if
(
subject
!=
null
)
{
subjectDto
=
new
SubjectDto
();
// 查找答题
Answer
answer
=
new
Answer
();
answer
.
setSubjectId
(
subject
.
getId
());
answer
.
setExaminationId
(
examRecord
.
getExaminationId
());
answer
.
setExamRecordId
(
examRecordId
);
answer
.
setUserId
(
userId
);
Answer
userAnswer
=
answerService
.
getAnswer
(
answer
);
// 设置答题
if
(
userAnswer
!=
null
)
subjectDto
.
setAnswer
(
userAnswer
);
BeanUtils
.
copyProperties
(
subject
,
subjectDto
);
subjectDto
.
setExaminationRecordId
(
examRecordId
);
}
}
return
subjectDto
;
}
}
service-api-impl/exam-service/src/main/resources/mapper/AnswerMapper.xml
View file @
47c7fba0
...
...
@@ -16,6 +16,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"answerColumns"
>
...
...
@@ -32,7 +33,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -52,6 +54,9 @@
<if
test=
"subjectId != null and subjectId != ''"
>
and a.subject_id = #{subjectId}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"answerResultMap"
>
...
...
@@ -94,7 +99,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code,
) values (
#{id},
#{userId},
...
...
@@ -109,7 +115,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/CourseMapper.xml
View file @
47c7fba0
...
...
@@ -14,6 +14,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"courseColumns"
>
...
...
@@ -28,7 +29,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -36,6 +38,9 @@
<if
test=
"courseName != null and courseName != ''"
>
and a.course_name like CONCAT('%',#{courseName},'%')
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"courseResultMap"
>
...
...
@@ -76,7 +81,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{courseName},
...
...
@@ -89,7 +95,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/ExamRecodeMapper.xml
View file @
47c7fba0
...
...
@@ -19,6 +19,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"examRecordColumns"
>
...
...
@@ -38,7 +39,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -58,6 +60,9 @@
<if
test=
"submitStatus != null and submitStatus != ''"
>
and a.submit_status = #{submitStatus}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"examRecordResultMap"
>
...
...
@@ -110,7 +115,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{userId},
...
...
@@ -128,7 +134,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/ExaminationMapper.xml
View file @
47c7fba0
...
...
@@ -24,6 +24,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"examinationColumns"
>
...
...
@@ -48,7 +49,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -65,6 +67,9 @@
<if
test=
"type != null and type != ''"
>
and a.type = #{type}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"examinationResultMap"
>
...
...
@@ -121,7 +126,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{examinationName},
...
...
@@ -144,7 +150,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/IncorrectAnswerMapper.xml
View file @
47c7fba0
...
...
@@ -15,6 +15,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"incorrectAnswerColumns"
>
...
...
@@ -30,7 +31,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -47,6 +49,9 @@
<if
test=
"serialNumber != null and serialNumber != ''"
>
and a.serial_number = #{serialNumber}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"incorrectAnswerResultMap"
>
...
...
@@ -78,7 +83,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{userId},
...
...
@@ -92,7 +98,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
@@ -111,7 +118,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values
<foreach
collection=
"list"
item=
"item"
index=
"index"
separator=
","
>
(
...
...
@@ -127,7 +135,8 @@
#{item.modifier},
#{item.modifyDate},
#{item.delFlag},
#{item.applicationCode}
#{item.applicationCode},
#{item.tenantCode}
)
</foreach>
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/KnowledgeMapper.xml
View file @
47c7fba0
...
...
@@ -13,6 +13,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"knowledgeColumns"
>
...
...
@@ -26,7 +27,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -34,6 +36,9 @@
<if
test=
"knowledgeName != null and knowledgeName != ''"
>
and a.knowledge_name like CONCAT('%',#{knowledgeName},'%')
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"knowledgeResultMap"
>
...
...
@@ -73,7 +78,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{knowledgeName},
...
...
@@ -85,7 +91,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/SubjectBankMapper.xml
View file @
47c7fba0
...
...
@@ -24,6 +24,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"subjectBankColumns"
>
...
...
@@ -48,7 +49,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -62,6 +64,9 @@
<if
test=
"subjectName != null and subjectName != ''"
>
and f.subject_name like CONCAT('%',#{subjectName},'%')
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"subjectBankResultMap"
>
...
...
@@ -106,7 +111,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{categoryId},
...
...
@@ -129,7 +135,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/SubjectCategoryMapper.xml
View file @
47c7fba0
...
...
@@ -13,6 +13,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"subjectCategoryColumns"
>
...
...
@@ -26,7 +27,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -34,6 +36,9 @@
<if
test=
"categoryName != null and categoryName != ''"
>
and a.category_name like CONCAT('%',#{categoryName},'%')
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"subjectCategoryResultMap"
>
...
...
@@ -55,7 +60,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) VALUES (
#{id},
#{categoryName},
...
...
@@ -67,7 +73,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
)
</insert>
...
...
service-api-impl/exam-service/src/main/resources/mapper/SubjectMapper.xml
View file @
47c7fba0
...
...
@@ -24,6 +24,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"subjectColumns"
>
...
...
@@ -48,7 +49,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -62,6 +64,9 @@
<if
test=
"subjectName != null and subjectName != ''"
>
and a.subject_name like CONCAT('%',#{subjectName},'%')
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"subjectResultMap"
>
...
...
@@ -127,7 +132,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{examinationId},
...
...
@@ -150,7 +156,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/user-service/src/main/resources/mapper/AttachmentMapper.xml
View file @
47c7fba0
...
...
@@ -16,6 +16,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"attachmentColumns"
>
...
...
@@ -32,7 +33,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -46,6 +48,9 @@
<if
test=
"busiModule != null and busiModule != ''"
>
and a.busi_module like #{busiModule}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"attachmentResultMap"
>
...
...
@@ -89,7 +94,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) VALUES (
#{id},
#{attachName},
...
...
@@ -104,7 +110,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
)
</insert>
...
...
service-api-impl/user-service/src/main/resources/mapper/DeptMapper.xml
View file @
47c7fba0
...
...
@@ -15,6 +15,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"deptColumns"
>
...
...
@@ -30,7 +31,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -38,6 +40,9 @@
<if
test=
"deptName != null and deptName != ''"
>
and a.dept_name like #{deptName}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"deptResultMap"
>
...
...
@@ -79,7 +84,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) VALUES (
#{id},
#{deptName},
...
...
@@ -93,7 +99,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
)
</insert>
...
...
service-api-impl/user-service/src/main/resources/mapper/LogMapper.xml
View file @
47c7fba0
...
...
@@ -19,6 +19,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"logColumns"
>
...
...
@@ -38,7 +39,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<select
id=
"get"
resultMap=
"logResultMap"
>
...
...
@@ -73,7 +75,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{type},
...
...
@@ -91,7 +94,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
service-api-impl/user-service/src/main/resources/mapper/MenuMapper.xml
View file @
47c7fba0
...
...
@@ -20,6 +20,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"menuColumns"
>
...
...
@@ -40,7 +41,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -54,6 +56,9 @@
<if
test=
"permission != null and permission != ''"
>
and a.permission like #{permission}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"menuResultMap"
>
...
...
@@ -82,7 +87,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) VALUES (
#{id},
#{name},
...
...
@@ -101,7 +107,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
)
</insert>
...
...
service-api-impl/user-service/src/main/resources/mapper/RoleMapper.xml
View file @
47c7fba0
...
...
@@ -14,6 +14,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<sql
id=
"roleColumns"
>
...
...
@@ -28,7 +29,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -42,6 +44,9 @@
<if
test=
"isDefault != null and isDefault != ''"
>
and a.is_default = #{isDefault}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<select
id=
"get"
resultMap=
"roleResultMap"
>
...
...
@@ -90,7 +95,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) VALUES (
#{id},
#{roleName},
...
...
@@ -103,7 +109,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
)
</insert>
...
...
service-api-impl/user-service/src/main/resources/mapper/UserMapper.xml
View file @
47c7fba0
...
...
@@ -22,6 +22,7 @@
<result
column=
"modify_date"
property=
"modifyDate"
/>
<result
column=
"del_flag"
property=
"delFlag"
/>
<result
column=
"application_code"
property=
"applicationCode"
/>
<result
column=
"tenant_code"
property=
"tenantCode"
/>
</resultMap>
<resultMap
id=
"userVoResultMap"
type=
"com.github.tangyi.common.core.vo.UserVo"
>
...
...
@@ -45,6 +46,7 @@
<result
column=
"umodify_date"
property=
"modifyDate"
/>
<result
column=
"udel_flag"
property=
"delFlag"
/>
<result
column=
"uapplication_code"
property=
"applicationCode"
/>
<result
column=
"utenant_code"
property=
"tenantCode"
/>
<collection
property=
"roleList"
ofType=
"com.github.tangyi.common.core.vo.Role"
>
<id
column=
"roleId"
property=
"id"
/>
<result
column=
"role_name"
property=
"roleName"
/>
...
...
@@ -56,6 +58,7 @@
<result
column=
"rmodify_date"
property=
"modifyDate"
/>
<result
column=
"rdel_flag"
property=
"delFlag"
/>
<result
column=
"rapplication_code"
property=
"applicationCode"
/>
<result
column=
"rtenant_code"
property=
"tenantCode"
/>
</collection>
</resultMap>
...
...
@@ -79,7 +82,8 @@
a.modifier,
a.modify_date,
a.del_flag,
a.application_code
a.application_code,
a.tenant_code
</sql>
<!-- where 条件 -->
...
...
@@ -102,6 +106,9 @@
<if
test=
"status != null and status != ''"
>
and a.status = #{status}
</if>
<if
test=
"tenantCode != null and tenantCode != ''"
>
and a.tenant_code = #{tenantCode}
</if>
</sql>
<sql
id=
"selectUserVo"
>
...
...
@@ -126,6 +133,7 @@
`user`.modify_date as "umodify_date",
`user`.del_flag as "udel_flag",
`user`.application_code as "uapplication_code",
`user`.tenant_code as "utenant_code",
r.id as "roleId",
r.role_name,
r.role_code,
...
...
@@ -135,7 +143,8 @@
r.modifier as "rmodifier",
r.modify_date as "rmodify_date",
r.del_flag as "rdel_flag",
r.application_code as "rapplication_code"
r.application_code as "rapplication_code",
r.tenant_code as "rtenant_code"
FROM
sys_user as `user`
LEFT JOIN sys_user_role ur ON ur.user_id = `user`.id
...
...
@@ -198,7 +207,8 @@
modifier,
modify_date,
del_flag,
application_code
application_code,
tenant_code
) values (
#{id},
#{name},
...
...
@@ -219,7 +229,8 @@
#{modifier},
#{modifyDate},
#{delFlag},
#{applicationCode}
#{applicationCode},
#{tenantCode}
);
</insert>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment