16 lines
594 B
XML
16 lines
594 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="com.suisung.mall.shop.base.mapper.ShopBaseDistrictMapper">
|
|
|
|
<select id="getParentDistrict" resultType="java.lang.Integer">
|
|
SELECT district_id id
|
|
FROM shop_base_district
|
|
where district_id in
|
|
<foreach collection="district_ids" item="district_id" index="index" open="(" close=")" separator=",">
|
|
#{district_id}
|
|
</foreach>
|
|
ORDER BY district_id
|
|
</select>
|
|
|
|
</mapper>
|