diff --git a/src/main/resources/mapper/MiniUserinfoDao.xml b/src/main/resources/mapper/MiniUserinfoDao.xml new file mode 100644 index 0000000000000000000000000000000000000000..7156c0f96943a92e8cfba215d13ba49f8dad16ad --- /dev/null +++ b/src/main/resources/mapper/MiniUserinfoDao.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + insert into PUBLIC.mini_user_info(json, name) + values (#{json}, #{name}) + + + + + update PUBLIC.mini_user_info + + + json = #{json}, + + + + + + where name= #{name} + + + + + delete from PUBLIC.mini_user_info where id = #{id} + + + + + delete from PUBLIC.mini_user_info where name = #{name} + + + \ No newline at end of file