From 37534223c250aac148f0e5a91289ed20e0d838a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E4=BA=AE?= Date: Wed, 26 Nov 2025 15:08:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=80=E4=B8=AA=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E5=8F=8D=E9=A6=88=E5=8A=9F=E8=83=BD=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E4=B8=80=E4=B8=AAbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/bmw/QuestionRecordMapper.xml | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 bonus-modules/bonus-bmw/src/main/resources/mapper/bmw/QuestionRecordMapper.xml diff --git a/bonus-modules/bonus-bmw/src/main/resources/mapper/bmw/QuestionRecordMapper.xml b/bonus-modules/bonus-bmw/src/main/resources/mapper/bmw/QuestionRecordMapper.xml new file mode 100644 index 0000000..bf083b1 --- /dev/null +++ b/bonus-modules/bonus-bmw/src/main/resources/mapper/bmw/QuestionRecordMapper.xml @@ -0,0 +1,48 @@ + + + + + + + + insert into question_record( module, content, submitter,create_id) + values( #{module}, #{content}, #{submitter}, #{createId}) + + + + update question_record set is_active = 0 where id = #{id} + + + + update question_record set handler = #{handler},update_time = #{updateTime},status = #{status},reamrk = #{remark},update_id = #{updateId} where id = #{id} + +