Commit 12e0ebe6 authored by 刘子正's avatar 刘子正

查看课程节点修改

parent 4fe8da80
......@@ -24,6 +24,7 @@ public interface BCourseCodeRepository extends BaseMapper<BCourseCode> {
@Select("<script>select * from b_course_code where 1=1 "
+ "<if test=\"delFlag !=null and delFlag != '' \">and del_flag = #{delFlag} </if> "
+ "<if test=\"flag !=null and flag != '' \">and flag = #{flag} </if> "
+ "order by seq"
+ "</script>")
@ResultMap(value = "BaseResultMap" )
List<BCourseCode> queryBCourseCodes(BCourseCode bCourseCode);
......
......@@ -54,7 +54,7 @@ public class BCourseCodeServiceImpl implements BCourseCodeService {
*/
@Override
public List<BCourseCode> findAll(BCourseCode bCourseCode){
bCourseCode.setStart();
// bCourseCode.setStart();
bCourseCode.setNotDeleted();
return bCourseCodeRepository.queryBCourseCodes(bCourseCode);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment