|
|
|
@ -432,6 +432,37 @@ |
|
|
|
|
ORDER BY hpm.creationTime DESC |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<!-- <select id="newList" resultType="com.msdw.tms.entity.ResultsEntity">--> |
|
|
|
|
<!-- SELECT--> |
|
|
|
|
<!-- et.id,--> |
|
|
|
|
<!-- et.experimental_class_name AS experimentalClassName,--> |
|
|
|
|
<!-- et.experimental_name AS experimentalName,--> |
|
|
|
|
<!-- et.project_id AS projectId,--> |
|
|
|
|
<!-- pm.projectName,--> |
|
|
|
|
<!-- pm.projectPermissions,--> |
|
|
|
|
<!-- et.creation_time AS creationTime,--> |
|
|
|
|
<!-- ( SELECT count( * ) FROM tms_experimental_report her WHERE et.id = her.projectId AND her.isdel = 0 ) AS number,--> |
|
|
|
|
<!-- et.is_del--> |
|
|
|
|
<!-- FROM--> |
|
|
|
|
<!-- tms_experimental_teaching et,--> |
|
|
|
|
<!-- hr_project_management pm--> |
|
|
|
|
<!-- WHERE--> |
|
|
|
|
<!-- user_id = #{userId}--> |
|
|
|
|
<!-- AND et.project_id = pm.projectId--> |
|
|
|
|
<!-- AND pm.isdel = 0--> |
|
|
|
|
<!-- <if test="searchContant!=null and searchContant!=''">and et.experimental_class_name like--> |
|
|
|
|
<!-- concat('%',#{searchContant},'%') or et.experimental_name like concat('%',#{searchContant},'%') or--> |
|
|
|
|
<!-- pm.projectName like concat('%',#{searchContant},'%')--> |
|
|
|
|
<!-- </if>--> |
|
|
|
|
<!-- <if test="startTime!=null and startTime!='' and endTime!=null and endTime != ''">and et.creation_time between--> |
|
|
|
|
<!-- #{endTime} and #{startTime}--> |
|
|
|
|
<!-- </if>--> |
|
|
|
|
<!-- <if test="month!=null and month != ''">and DATE_SUB(CURDATE(), INTERVAL #{month} month ) <=--> |
|
|
|
|
<!-- date(et.creation_time)--> |
|
|
|
|
<!-- </if>--> |
|
|
|
|
<!-- ORDER BY et.creation_time DESC--> |
|
|
|
|
<!-- </select>--> |
|
|
|
|
|
|
|
|
|
<select id="newList" resultType="com.msdw.tms.entity.ResultsEntity"> |
|
|
|
|
SELECT |
|
|
|
|
et.id, |
|
|
|
@ -441,7 +472,6 @@ |
|
|
|
|
pm.projectName, |
|
|
|
|
pm.projectPermissions, |
|
|
|
|
et.creation_time AS creationTime, |
|
|
|
|
( SELECT count( * ) FROM tms_experimental_report her WHERE et.id = her.projectId AND her.isdel = 0 ) AS number, |
|
|
|
|
et.is_del |
|
|
|
|
FROM |
|
|
|
|
tms_experimental_teaching et, |
|
|
|
@ -462,7 +492,6 @@ |
|
|
|
|
</if> |
|
|
|
|
ORDER BY et.creation_time DESC |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="reportList" resultType="com.msdw.tms.entity.ReportEntity"> |
|
|
|
|
SELECT hui.userId,her.reportId,hui.userName as |
|
|
|
|
studentName,s.schoolName,stu.workNumber,her.score,her.creationTime |
|
|
|
@ -550,6 +579,29 @@ |
|
|
|
|
AND sch.isdel = 0 |
|
|
|
|
AND ter.isdel = 0 |
|
|
|
|
AND tet.is_del = 0--> |
|
|
|
|
<!-- <select id="getTeachAchievement" resultType="com.msdw.tms.entity.vo.AchievementManagementVO">--> |
|
|
|
|
<!-- SELECT schoolName,--> |
|
|
|
|
<!-- experimental_class_name,--> |
|
|
|
|
<!-- userName,--> |
|
|
|
|
<!-- workNumber,--> |
|
|
|
|
<!-- r.score,--> |
|
|
|
|
<!-- r.recordId,--> |
|
|
|
|
<!-- report.reportId,--> |
|
|
|
|
<!-- r.submitTime,--> |
|
|
|
|
<!-- stu.studentId,--> |
|
|
|
|
<!-- t.id as projectId--> |
|
|
|
|
<!-- FROM tms_experimental_teaching t--> |
|
|
|
|
<!-- INNER JOIN tms_experimental_report report ON report.projectId = t.id--> |
|
|
|
|
<!-- INNER JOIN tms_project_record r ON r.recordId = report.eventId--> |
|
|
|
|
<!-- INNER JOIN hr_user_info u ON u.userId = r.userId--> |
|
|
|
|
<!-- INNER JOIN school s ON s.schoolId = u.schoolId--> |
|
|
|
|
<!-- INNER JOIN student stu ON stu.userId = u.userId--> |
|
|
|
|
<!-- WHERE t.id = #{id}--> |
|
|
|
|
<!-- AND t.is_del = 0--> |
|
|
|
|
<!-- AND report.isdel = 0--> |
|
|
|
|
|
|
|
|
|
<!-- </select>--> |
|
|
|
|
|
|
|
|
|
<select id="getTeachAchievement" resultType="com.msdw.tms.entity.vo.AchievementManagementVO"> |
|
|
|
|
SELECT schoolName, |
|
|
|
|
experimental_class_name, |
|
|
|
@ -568,7 +620,6 @@ |
|
|
|
|
INNER JOIN school s ON s.schoolId = u.schoolId |
|
|
|
|
INNER JOIN student stu ON stu.userId = u.userId |
|
|
|
|
WHERE t.id = #{id} |
|
|
|
|
AND t.is_del = 0 |
|
|
|
|
AND report.isdel = 0 |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|