You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
963 B
26 lines
963 B
<?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="com.lzbi.wechat.mapper.SysWechatMapper">
|
|
|
|
<select id="selectSysWechatById" resultType="com.lzbi.wechat.domain.SysWechat">
|
|
select id, phone, app_id from sys_wechat where id = #{id}
|
|
</select>
|
|
|
|
<select id="selectWechatByOpenId" resultType="com.lzbi.wechat.domain.SysWechat">
|
|
select id, phone, app_id from sys_wechat where open_id = #{openId}
|
|
</select>
|
|
|
|
<insert id="insertSysWechat" parameterType="com.lzbi.wechat.domain.SysWechat">
|
|
insert into sys_wechat (open_id, phone) values (#{openId}, #{phone})
|
|
</insert>
|
|
|
|
<update id="updateSysWechat">
|
|
update sys_wechat set open_id = #{openId}, phone = #{phone} where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteSysWechat">
|
|
delete from sys_wechat where id = #{id}
|
|
</delete>
|
|
</mapper>
|