店铺列表问题
老师为什么我只能显示审核中的店铺,我看了一下SQL语句,
<if test="shopCondition.enableStatus!=null">
and s.enableStatus=#{shopCondition.enableStatus}
</if>
这一个条件为什么执行的时候一直为0我数据库有1的状态啊,下面是我的SQL语句
<select id="queryShopList" resultMap="shopMap">
select s.*,c.cityId,c.cityName,st.shopTypeId,
st.shopTypeName
from
shop s,
shoptype st,
city c
<where>
<if test="shopCondition.shopName!=null">
and s.shopName like '%${shopCondition.shopName}%'
</if>
<if test="shopCondition.shopType!=null and shopCondition.shopType.shopTypeId!=null">
and s.shopTypeId=#{shopCondition.shopType.shopTypeId}
</if>
<if test="shopCondition.city!=null and shopCondition.city.cityId!=null">
and s.cityId=#{shopCondition.city.cityId}
</if>
<if test="shopCondition.user!=null and shopCondition.user.userId!=null">
and s.userId=#{shopCondition.user.userId}
</if>
and s.shopTypeId=st.shopTypeId
and s.cityId=c.cityId
</where>
order by
s.priority desc
limit #{rowIndex},#{pageSize}
</select>
正在回答
同学你好,从同学的另一个问答中看:https://class.imooc.com/course/qadetail/192290,同学现在可以显示审核通过的店铺是吗?
祝:学习愉快~
相似问题
登录后可查看更多问答,登录/注册
- 参与学习 人
- 提交作业 323 份
- 解答问题 8263 个
本阶段将带你学习主流框架SSM,以及SpringBoot ,打通成为Java工程师的最后一公里!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星