【新增】专业/课程 点位判断

【修改】模板库复制修改试卷编号
This commit is contained in:
YOHO\20373
2025-06-25 16:22:40 +08:00
parent c1171b31ec
commit 87fd41bb49
19 changed files with 441 additions and 21 deletions

View File

@@ -137,6 +137,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
AND q3.deleted = '0'
LIMIT 1;
</select>
<select id="selectAllSpecialtyRelations"
resultType="pc.exam.pp.module.exam.service.monitor.vo.SpecialtyRelation">
SELECT sp_id AS spId, parent_id AS parentId
FROM exam_specialty
</select>
<select id="selectAllIdToParent" resultType="pc.exam.pp.module.exam.service.monitor.vo.IdParentPair">
SELECT sp_id AS spId, parent_id AS parentId
FROM exam_specialty
WHERE deleted = '0' and status ='0' and tenant_id =#{loginTenantId}
</select>
<update id="deleteExamSpecialtyBySpId" parameterType="Long">