mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
20 lines
616 B
XML
20 lines
616 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="cn.hellohao.dao.ConfdataMapper">
|
|
|
|
<select id="selectConfdata" resultType="cn.hellohao.pojo.Confdata">
|
|
select * from confdata where `key`=#{key}
|
|
</select>
|
|
|
|
<update id="updateConfdata" parameterType="cn.hellohao.pojo.Confdata">
|
|
UPDATE confdata
|
|
<set>
|
|
<if test="jsondata != null">
|
|
jsondata = #{jsondata},
|
|
</if>
|
|
</set>
|
|
where `key`=#{key}
|
|
</update>
|
|
|
|
|
|
</mapper> |