AddressDao.xml 604 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.sqx.modules.address.dao.AddressDao">
  4. <select id="selectAddressList" resultType="com.sqx.modules.address.entity.Address">
  5. select
  6. *
  7. from
  8. address
  9. where
  10. user_id = #{userId}
  11. <if test="insideAddressFlag">
  12. and insideAddressId is not null
  13. </if>
  14. order by
  15. address_default desc, update_time desc
  16. </select>
  17. </mapper>