|
|
@@ -68,7 +68,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<select id="selectPlayerItemsListByUser" resultType="org.dromara.business.domain.vo.PlayerItemsVo">
|
|
|
SELECT a.*,c.name as itemName, b.phone,b.nick_name, b.id as userId FROM player_items a left join user b on a.player_id=b.id
|
|
|
left join items c on a.item_id=c.id
|
|
|
- WHERE 1=1 and (b.phone = #{userIds} or b.nick_name = #{userIds})
|
|
|
+ WHERE 1=1 and (b.phone = #{userIds} or b.nick_name = #{userIds}) and a.item_id in (1001)
|
|
|
</select>
|
|
|
|
|
|
|