新增待办

This commit is contained in:
zhangchenbiao
2024-04-22 17:07:25 +08:00
parent 1c6e49ebb8
commit 3f38c940e1
20 changed files with 383 additions and 6 deletions

View File

@@ -64,4 +64,14 @@
update xfsg_shop_info set point_id = null where id = #{shopId}
</update>
<select id="getShopListByIds" resultMap="BaseResultMap">
select
<include refid="allColumn"/>
from
xfsg_shop_info where id in
<foreach collection="shopIds" item="shopId" separator="," open="(" close=")">
#{shopId}
</foreach>
</select>
</mapper>