学员档案页面报错修改

This commit is contained in:
liang.chao 2025-02-08 09:01:41 +08:00
parent ee4ea188b9
commit 48a9acbed0
2 changed files with 2 additions and 3 deletions

View File

@ -253,10 +253,10 @@
and etu.pro_id = #{proId}
</if>
<if test="type == '1' or type == 1">
and etu.sign_time is not null and etu.sign_time != '' and etu.sign_time != 'null'
and etu.sign_time is not null
</if>
<if test="type == '2' or type == 2">
and (etu.sign_time is null or etu.sign_time = '' or etu.sign_time = 'null')
AND etu.sign_time IS NULL
</if>
</select>
<select id="getExamCount" resultType="java.lang.Integer">

View File

@ -1,7 +1,6 @@
package com.bonus.flowable.listener;
import com.bonus.flowable.service.BusinessService;
import com.sun.javafx.collections.MappingChange;
import org.flowable.bpmn.model.ExtensionAttribute;
import org.flowable.bpmn.model.FlowElement;
import org.flowable.bpmn.model.UserTask;