@@ -72,6 +72,11 @@ public class FsCourseWatchLogListParam implements Serializable {
private List<Long> periodIds;//训练营期ID
+ /**
+ * 营期ID(单值筛选)
+ */
+ private Long periodId;
+
private String customPageStr;
private Long lastId;
@@ -164,6 +164,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{periodId}
</foreach>
</if>
+ <if test="maps.periodId != null">
+ and l.period_id = #{maps.periodId}
+ </if>
<if test="maps.qwUserName != null and maps.qwUserName != '' ">
and qu.qw_user_name = #{maps.qwUserName}