|
@@ -25,6 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="interfaceAccountId" column="interface_account_id"/>
|
|
|
<result property="interfacePeriodId" column="interface_period_id"/>
|
|
|
<result property="officialLearningUrl" column="official_learning_url"/>
|
|
|
+ <result property="pastDueDay" column="past_due_day"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<resultMap type="com.zhongzheng.modules.grade.vo.ClassGradeVo" id="ClassGradeVoResult">
|
|
@@ -60,6 +61,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="projectId" column="project_id"/>
|
|
|
<result property="goodsId" column="goods_id"/>
|
|
|
<result property="sevenCode" column="seven_code"/>
|
|
|
+ <result property="pastDueDay" column="past_due_day"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<resultMap type="com.zhongzheng.modules.grade.vo.ClassGradeUserListVo" id="ClassGradeUserListVo">
|
|
@@ -308,7 +310,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
AND (#{classStartTime} BETWEEN g.class_start_time and g.class_end_time or #{classEndTime} BETWEEN g.class_start_time and g.class_end_time)
|
|
|
</if>
|
|
|
<if test="pastDue != null or pastDue != null ">
|
|
|
- AND ((unix_timestamp(now())+6*24*3600) < g.class_end_time or g.class_start_time is null)
|
|
|
+ AND ((unix_timestamp(now())+g.past_due_day*24*3600) < g.class_end_time or g.class_start_time is null)
|
|
|
</if>
|
|
|
<if test="educationTypeId != null and educationTypeId !='' ">
|
|
|
AND (
|