|
|
|
@ -82,10 +82,9 @@ |
|
|
|
|
</insert> |
|
|
|
|
|
|
|
|
|
<update id="deleteReport"> |
|
|
|
|
UPDATE tms_project_record tpr,hr_experimental_report tcr |
|
|
|
|
SET tpr.isdel = 1, tcr.isdel = 1 |
|
|
|
|
WHERE tpr.recordId = #{recordId} |
|
|
|
|
AND tcr.reportId = #{reportId} |
|
|
|
|
UPDATE tms_project_record tpr,tms_experimental_report ter |
|
|
|
|
SET tpr.isdel = 1, ter.isdel = 1 |
|
|
|
|
WHERE tpr.recordId = #{recordId} AND ter.reportId = #{reportId} |
|
|
|
|
</update> |
|
|
|
|
<update id="updateComment"> |
|
|
|
|
UPDATE tms_experimental_report |
|
|
|
@ -504,4 +503,23 @@ |
|
|
|
|
AND re.isdel = 0; |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="getTeachAchievement" resultType="com.msdw.tms.entity.vo.AchievementManagementVO"> |
|
|
|
|
SELECT r.recordId, schoolName,tet.experimental_class_name, userName, workNumber, score, submitTime, ter.reportId |
|
|
|
|
from tms_project_record r |
|
|
|
|
inner join student s on s.userId = r.userId |
|
|
|
|
inner join hr_user_info u on u.userId = r.userId |
|
|
|
|
inner join school sch on sch.schoolId = u.schoolId |
|
|
|
|
inner join tms_experimental_report ter on r.recordId = ter.eventId |
|
|
|
|
inner join tms_experimental_teaching tet on r.projectId = tet.project_id |
|
|
|
|
WHERE |
|
|
|
|
tet.id = #{id} |
|
|
|
|
AND r.isdel = 0 |
|
|
|
|
AND s.isdel = 0 |
|
|
|
|
AND u.isdel = 0 |
|
|
|
|
AND sch.isdel = 0 |
|
|
|
|
AND ter.isdel = 0 |
|
|
|
|
AND tet.is_del = 0 |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
</mapper> |