feat:系统建店相关代码

refactor:鲜丰系统API回调优化
This commit is contained in:
guohb
2024-04-23 16:21:17 +08:00
parent ed964f4e5f
commit d446d87366
38 changed files with 2445 additions and 63 deletions

View File

@@ -190,8 +190,16 @@
</foreach>
</if>
</select>
<select id="getDataByShopIdAndLineId" resultType="com.cool.store.entity.PointInfoDO">
SELECT
<include refid="allColumn"/>
FROM xfsg_point_info
WHERE shop_id = #{shopId}
AND line_id = #{lineId}
AND deleted = 0
</select>
<update id="recyclePoint">
<update id="recyclePoint">
update xfsg_point_info set line_id = null, shop_id = null, select_status = 0, update_time = now(), point_status = if(point_status = 6, 5, point_status)) where id = #{pointId}
</update>