From 429733129796a4aa932a8691a9953353246c0fda Mon Sep 17 00:00:00 2001 From: xyli Date: Wed, 1 Feb 2023 13:10:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E7=94=A8=E6=88=B7=E8=A7=92?= =?UTF-8?q?=E8=89=B2=E4=BF=A1=E6=81=AFxml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/UserrolesinfoDao.xml | 83 +++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 src/main/resources/mapper/UserrolesinfoDao.xml diff --git a/src/main/resources/mapper/UserrolesinfoDao.xml b/src/main/resources/mapper/UserrolesinfoDao.xml new file mode 100644 index 0000000..ddd2633 --- /dev/null +++ b/src/main/resources/mapper/UserrolesinfoDao.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + insert into PUBLIC.user_roles_info(name, json) + values (#{name}, #{json}) + + + + + update PUBLIC.user_roles_info + + + name = #{name}, + + + json = #{json}, + + + where id = #{id} + + + + + delete from PUBLIC.user_roles_info where id = #{id} + + + + + delete from PUBLIC.user_roles_info where name = #{name} + + -- Gitee