fix
This commit is contained in:
@@ -69,8 +69,14 @@
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
<update id="deleteUnselectedRecommendPointByLineId">
|
||||
update xfsg_point_recommend set deleted = 1 where line_id = #{lineId} and deleted = 0 and status in (0,2)
|
||||
<update id="turnLineUpdateRecommendStatus">
|
||||
update
|
||||
xfsg_point_recommend
|
||||
set
|
||||
deleted = if(status = 1, 1, deleted),
|
||||
development_manager = if(status in (2,4), #{developmentManager}, development_manager)
|
||||
where
|
||||
line_id = #{lineId}
|
||||
</update>
|
||||
|
||||
<select id="getLineRecommendPointPage" resultType="com.cool.store.dto.point.MiniPointPageDTO">
|
||||
|
||||
Reference in New Issue
Block a user