后端使用Integer接收channelId,channelId若没有数据,前端有可能传""
之前代码:
<if test="channelId != null and channelId != ''">
AND swo.channel_id = #{channelId}
</if>
导致问题:传入0的时候查询不到数据
解决方案:
后端使用Integer接收channelId,channelId若没有数据,前端有可能传""
之前代码:
<if test="channelId != null and channelId != ''">
AND swo.channel_id = #{channelId}
</if>
导致问题:传入0的时候查询不到数据
解决方案: