Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
education
Project
Project
Details
Activity
Releases
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
李丛阳
education
Commits
f6b24a2d
Commit
f6b24a2d
authored
Jul 18, 2020
by
liuyuanjun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改注释
parent
3219a41f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
BLessonPersonRepository.java
...rcisoft/business/blesson/dao/BLessonPersonRepository.java
+1
-2
LessonTypeEnum.java
...va/org/rcisoft/business/blesson/enums/LessonTypeEnum.java
+1
-1
No files found.
src/main/java/org/rcisoft/business/blesson/dao/BLessonPersonRepository.java
View file @
f6b24a2d
...
@@ -28,14 +28,13 @@ public interface BLessonPersonRepository extends BaseMapper<BLessonPerson> {
...
@@ -28,14 +28,13 @@ public interface BLessonPersonRepository extends BaseMapper<BLessonPerson> {
" and bl.del_flag != 1 and bl.flag = 1 "
+
" and bl.del_flag != 1 and bl.flag = 1 "
+
" and blp.person_id = #{param.userId} "
+
" and blp.person_id = #{param.userId} "
+
" and (bl.corp_id = #{param.corpId} or blc.corp_id = #{param.corpId} )"
+
" and (bl.corp_id = #{param.corpId} or blc.corp_id = #{param.corpId} )
"
+
" <if test= \" param.isFinish != null and param.isFinish != ''\">and blp.is_finish = #{param.isFinish} </if> "
+
" <if test= \" param.isFinish != null and param.isFinish != ''\">and blp.is_finish = #{param.isFinish} </if> "
+
" <if test= \" param.lessonType !=null and param.lessonType != ''\">and bl.lesson_type = #{param.lessonType} </if> "
+
" <if test= \" param.lessonType !=null and param.lessonType != ''\">and bl.lesson_type = #{param.lessonType} </if> "
+
" <if test= \" param.isAppoint !=null and param.isAppoint != ''\">and blp.is_appoint = #{param.isAppoint} </if> "
+
" <if test= \" param.isAppoint !=null and param.isAppoint != ''\">and blp.is_appoint = #{param.isAppoint} </if> "
+
" <if test= \" param.trainIsSign !=null and param.trainIsSign != ''\">and blp.train_is_sign = #{param.trainIsSign} </if> "
+
" <if test= \" param.trainIsSign !=null and param.trainIsSign != ''\">and blp.train_is_sign = #{param.trainIsSign} </if> "
+
" order by blp.update_date desc"
+
" order by blp.update_date desc"
+
""
+
"</script>"
)
"</script>"
)
@ResultMap
(
value
=
"ILearnResultMap"
)
@ResultMap
(
value
=
"ILearnResultMap"
)
List
<
BLessonPerson
>
queryLearnBLessons
(
@Param
(
"param"
)
ILearnLessonDTO
param
);
List
<
BLessonPerson
>
queryLearnBLessons
(
@Param
(
"param"
)
ILearnLessonDTO
param
);
...
...
src/main/java/org/rcisoft/business/blesson/enums/LessonTypeEnum.java
View file @
f6b24a2d
...
@@ -5,7 +5,7 @@ import lombok.Getter;
...
@@ -5,7 +5,7 @@ import lombok.Getter;
@Getter
@Getter
public
enum
LessonTypeEnum
{
public
enum
LessonTypeEnum
{
//
是否已学完(0:未开始 1:已开始 2: 已学完
)
//
课程类型(0:课程 1:培训
)
LESSON
(
"0"
),
LESSON
(
"0"
),
TRAIN
(
"1"
),
TRAIN
(
"1"
),
...
...
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