<?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.panzhihua.service_community.dao.ComBatteryUserAddressMapper">
|
|
<resultMap type="com.panzhihua.service_community.entity.ComBatteryUserAddress" id="ComBatteryUserAddressMap">
|
<result property="id" column="id" jdbcType="INTEGER"/>
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
<result property="phone" column="phone" jdbcType="VARCHAR"/>
|
<result property="address" column="address" jdbcType="VARCHAR"/>
|
<result property="isDefault" column="is_default" jdbcType="INTEGER"/>
|
<result property="provinceAdcode" column="province_adcode" jdbcType="VARCHAR"/>
|
<result property="provinceName" column="province_name" jdbcType="VARCHAR"/>
|
<result property="cityAdcode" column="city_adcode" jdbcType="VARCHAR"/>
|
<result property="cityName" column="city_name" jdbcType="VARCHAR"/>
|
<result property="districtAdcode" column="district_adcode" jdbcType="VARCHAR"/>
|
<result property="districtName" column="district_name" jdbcType="VARCHAR"/>
|
<result property="createAt" column="create_at" jdbcType="TIMESTAMP"/>
|
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
<result property="updateAt" column="update_at" jdbcType="TIMESTAMP"/>
|
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
<result property="userId" column="user_id" jdbcType="INTEGER"/>
|
</resultMap>
|
|
<!--查询单个-->
|
<select id="queryById" resultType="com.panzhihua.common.model.vos.common.ComBatteryUserAddressVo">
|
select
|
id, user_id, name, phone, address, is_default, province_adcode, province_name, city_adcode, city_name, district_adcode, district_name, create_at, create_by, update_at, update_by
|
from com_battery_user_address
|
where id = #{id}
|
</select>
|
|
<!--查询指定行数据-->
|
<select id="queryAllByLimit" resultType="com.panzhihua.common.model.vos.common.ComBatteryUserAddressVo">
|
select
|
id, user_id, name, phone, address, is_default, province_adcode, province_name, city_adcode, city_name, district_adcode,
|
district_name, create_at, create_by, update_at, update_by
|
from com_battery_user_address
|
<where>
|
<if test="dto.id != null">
|
and id = #{dto.id}
|
</if>
|
<if test="dto.userId != null">
|
and user_id = #{dto.userId}
|
</if>
|
<if test="dto.name != null and dto.name != ''">
|
and `name` = #{dto.name}
|
</if>
|
<if test="dto.phone != null and dto.phone != ''">
|
and phone = #{dto.phone}
|
</if>
|
<if test="dto.isDefault != null">
|
and is_default = #{dto.isDefault}
|
</if>
|
<if test="dto.provinceAdcode != null and dto.provinceAdcode != ''">
|
and province_adcode = #{dto.provinceAdcode}
|
</if>
|
<if test="dto.cityAdcode != null and dto.cityAdcode != ''">
|
and city_adcode = #{dto.cityAdcode}
|
</if>
|
<if test="dto.districtAdcode != null and dto.districtAdcode != ''">
|
and district_adcode = #{dto.districtAdcode}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
|
<!--查询所有数据-->
|
<select id="queryAllByList" resultType="com.panzhihua.common.model.vos.common.ComBatteryUserAddressVo">
|
select
|
id, user_id, name, phone, address, is_default, province_adcode, province_name, city_adcode, city_name, district_adcode,
|
district_name, create_at, create_by, update_at, update_by
|
from com_battery_user_address
|
<where>
|
<if test="dto.id != null">
|
and id = #{dto.id}
|
</if>
|
<if test="dto.userId != null">
|
and user_id = #{dto.userId}
|
</if>
|
<if test="dto.name != null and dto.name != ''">
|
and `name` = #{dto.name}
|
</if>
|
<if test="dto.phone != null and dto.phone != ''">
|
and phone = #{dto.phone}
|
</if>
|
<if test="dto.isDefault != null">
|
and is_default = #{dto.isDefault}
|
</if>
|
<if test="dto.provinceAdcode != null and dto.provinceAdcode != ''">
|
and province_adcode = #{dto.provinceAdcode}
|
</if>
|
<if test="dto.cityAdcode != null and dto.cityAdcode != ''">
|
and city_adcode = #{dto.cityAdcode}
|
</if>
|
<if test="dto.districtAdcode != null and dto.districtAdcode != ''">
|
and district_adcode = #{dto.districtAdcode}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
|
<update id="updateUserAddressIsDefault">
|
update com_battery_user_address set is_default = 2 where user_id = #{userId}
|
</update>
|
|
</mapper>
|