| | |
| | | <id property="choicesType" column="choices_type"/> |
| | | <id property="score" column="score"/> |
| | | <id property="analysis" column="analysis"/> |
| | | <id property="answer" column="answer"/> |
| | | <id property="level" column="level"/> |
| | | <id property="creator" column="creator"/> |
| | | <id property="createDate" column="create_date"/> |
| | |
| | | <id property="delFlag" column="del_flag"/> |
| | | <id property="applicationCode" column="application_code"/> |
| | | <id property="tenantCode" column="tenant_code"/> |
| | | <id property="tktype" column="tktype"/> |
| | | <result column="id" property="id"/> |
| | | <collection property="examSubjectOptions" javaType="java.util.List" ofType="org.springblade.modules.exam.entity.ExamSubjectOption" autoMapping="true"> |
| | | <id property="id" column="eso_id"/> |
| | |
| | | <update id="updateChoicesValue"> |
| | | update exam_subject_choices set score = #{value} where id = #{id} |
| | | </update> |
| | | |
| | | <!--根据 题目id 删除选项--> |
| | | <delete id="removeBySubjectId"> |
| | | delete from exam_subject_option where subject_choices_id = #{id} |
| | | </delete> |
| | | </mapper> |