Commit f6b24a2d authored by liuyuanjun's avatar liuyuanjun

修改注释

parent 3219a41f
...@@ -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);
......
...@@ -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"),
......
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