Authored by Lixiaodi

修改mapper xml错误

... ... @@ -91,7 +91,7 @@
select <include refid="queryColumns"/>
from product_sort
</select>
<select id=selectSortByIdList resultMap="productSortMap">
<select id="selectSortByIdList" resultMap="productSortMap">
select id,sort_name
from product_sort where id in
<foreach item="item" index="index" collection="list" open="(" separator="," close=")">
... ...
... ... @@ -84,7 +84,7 @@
select <include refid="queryColumns"/>
from size where sort_id = #{sortId}
</select>
<select id="selectAllSizeBySortId" resultMap="sizeMap">
<select id="selectByIdList" resultMap="sizeMap">
select id,size_name
from size where sort_id in
<foreach item="item" index="index" collection="list" open="(" separator="," close=")">
... ...