安全教育返回分类名称

This commit is contained in:
guoshengxiong 2025-12-16 11:25:56 +08:00
parent 43e8ffa365
commit a665ee7a0a

View File

@ -30,9 +30,11 @@
</select>
<select id="selectWorkerEducationPage" resultType="com.zhgd.jeecg.common.mybatis.EntityMap">
SELECT a.*,w.worker_name,b.edu_content,b.edu_course_name,b.edu_type
,ec.classify_name
from worker_safe_education_worker a
INNER JOIN worker_info w ON a.worker_id=w.id
INNER JOIN worker_safe_education b ON a.edu_id=b.id
INNER JOIN education_classify ec on ec.id=b.classify_id
WHERE video_type=1 and w.project_sn=#{param.projectSn}
<if test="param.eduCourseName != null and param.eduCourseName != ''">
and b.edu_course_name like CONCAT(CONCAT('%',#{param.eduCourseName}),'%')