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.
46 lines
1.3 KiB
46 lines
1.3 KiB
<?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.sky.mapper.AddressBookMapper">
|
|
|
|
<select id="list" parameterType="com.sky.entity.AddressBook" resultType="com.sky.entity.AddressBook">
|
|
select * from address_book
|
|
<where>
|
|
<if test="userId != null">
|
|
user_id = #{userId}
|
|
</if>
|
|
<if test="phone != null">
|
|
and phone = #{phone}
|
|
</if>
|
|
<if test="isDefault != null">
|
|
and is_default = #{isDefault}
|
|
</if>
|
|
</where>
|
|
</select>
|
|
|
|
<update id="update">
|
|
update address_book
|
|
<set>
|
|
<if test="consignee != null">
|
|
consignee = #{consignee},
|
|
</if>
|
|
<if test="sex != null">
|
|
sex = #{sex},
|
|
</if>
|
|
<if test="phone != null">
|
|
phone = #{phone},
|
|
</if>
|
|
<if test="detail != null">
|
|
detail = #{detail},
|
|
</if>
|
|
<if test="label != null">
|
|
label = #{label},
|
|
</if>
|
|
<if test="isDefault != null">
|
|
is_default = #{isDefault},
|
|
</if>
|
|
</set>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
</mapper>
|