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
12e0ebe6
Commit
12e0ebe6
authored
Apr 25, 2018
by
刘子正
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查看课程节点修改
parent
4fe8da80
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
BCourseCodeRepository.java
...isoft/business/bcoursecode/dao/BCourseCodeRepository.java
+1
-0
BCourseCodeServiceImpl.java
...ness/bcoursecode/service/impl/BCourseCodeServiceImpl.java
+1
-1
No files found.
src/main/java/org/rcisoft/business/bcoursecode/dao/BCourseCodeRepository.java
View file @
12e0ebe6
...
@@ -24,6 +24,7 @@ public interface BCourseCodeRepository extends BaseMapper<BCourseCode> {
...
@@ -24,6 +24,7 @@ public interface BCourseCodeRepository extends BaseMapper<BCourseCode> {
@Select
(
"<script>select * from b_course_code where 1=1 "
@Select
(
"<script>select * from b_course_code where 1=1 "
+
"<if test=\"delFlag !=null and delFlag != '' \">and del_flag = #{delFlag} </if> "
+
"<if test=\"delFlag !=null and delFlag != '' \">and del_flag = #{delFlag} </if> "
+
"<if test=\"flag !=null and flag != '' \">and flag = #{flag} </if> "
+
"<if test=\"flag !=null and flag != '' \">and flag = #{flag} </if> "
+
"order by seq"
+
"</script>"
)
+
"</script>"
)
@ResultMap
(
value
=
"BaseResultMap"
)
@ResultMap
(
value
=
"BaseResultMap"
)
List
<
BCourseCode
>
queryBCourseCodes
(
BCourseCode
bCourseCode
);
List
<
BCourseCode
>
queryBCourseCodes
(
BCourseCode
bCourseCode
);
...
...
src/main/java/org/rcisoft/business/bcoursecode/service/impl/BCourseCodeServiceImpl.java
View file @
12e0ebe6
...
@@ -54,7 +54,7 @@ public class BCourseCodeServiceImpl implements BCourseCodeService {
...
@@ -54,7 +54,7 @@ public class BCourseCodeServiceImpl implements BCourseCodeService {
*/
*/
@Override
@Override
public
List
<
BCourseCode
>
findAll
(
BCourseCode
bCourseCode
){
public
List
<
BCourseCode
>
findAll
(
BCourseCode
bCourseCode
){
bCourseCode
.
setStart
();
//
bCourseCode.setStart();
bCourseCode
.
setNotDeleted
();
bCourseCode
.
setNotDeleted
();
return
bCourseCodeRepository
.
queryBCourseCodes
(
bCourseCode
);
return
bCourseCodeRepository
.
queryBCourseCodes
(
bCourseCode
);
}
}
...
...
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