From b90f04453b5c56edd88637284024ae2cccbe609a Mon Sep 17 00:00:00 2001 From: xyli Date: Wed, 1 Feb 2023 13:08:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E8=8A=82=E7=82=B9=E4=BF=A1?= =?UTF-8?q?=E6=81=AFxml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/mapper/NodeinfoDao.xml | 90 +++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/main/resources/mapper/NodeinfoDao.xml diff --git a/src/main/resources/mapper/NodeinfoDao.xml b/src/main/resources/mapper/NodeinfoDao.xml new file mode 100644 index 0000000..426091e --- /dev/null +++ b/src/main/resources/mapper/NodeinfoDao.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + insert into PUBLIC.node_info(name, json) + values (#{name}, #{json}) + + + + + update PUBLIC.node_info + + + name = #{name}, + + + json = #{json}, + + + where id = #{id} + + + + + delete from PUBLIC.node_info where id = #{id} + + + + + delete from PUBLIC.node_info where name = #{name} + + + -- Gitee