From 61c4bec84c7bb799d6060542410efdfe9771c514 Mon Sep 17 00:00:00 2001 From: cjw Date: Fri, 14 Jun 2024 10:00:49 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E9=A2=98=E6=89=B9=E9=87=8F=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=B7=BB=E5=8A=A0scoretype?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/scale/SysScaleAnswerMapper.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ruoyi-modules/rouyi-scale/src/main/resources/mapper/scale/SysScaleAnswerMapper.xml b/ruoyi-modules/rouyi-scale/src/main/resources/mapper/scale/SysScaleAnswerMapper.xml index 6ae78d2..1e0bec6 100644 --- a/ruoyi-modules/rouyi-scale/src/main/resources/mapper/scale/SysScaleAnswerMapper.xml +++ b/ruoyi-modules/rouyi-scale/src/main/resources/mapper/scale/SysScaleAnswerMapper.xml @@ -4,10 +4,11 @@ "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> - insert into sys_scale_answer(answer_id, question_id, scale_id, answer_option, score, type, sort) values + insert into sys_scale_answer(answer_id, question_id, scale_id, answer_option, + score, score_type, type, sort) values (#{item.answerId}, #{item.questionId}, #{item.scaleId}, #{item.answerOption}, - #{item.score}, #{item.type}, #{item.sort}) + #{item.score}, #{item.scoreType}, #{item.type}, #{item.sort})