目录
前言:
苍穹外卖Day04项目实战-套餐管理是自行完成,配置资源也给出了参考代码,但是我在比对参考代码是发现参考答案遗漏了一部分。遗漏部分是在第4个业务功能-修改代码,主要位置是在4.2.4 SetmealDishMapper前后。
遗漏的部分是SetmealMapper.xml中update的sql配置
补充参考答案:
可以补充为:
4.2.5 SetmealMapper.xml
<update id="update">
update setmeal
<set>
<if test="categoryId != null">category_id = #{categoryId},</if>
<if test="name != null">name = #{name},</if>
<if test="price != null">price = #{price},</if>
<if test="status != null">status = #{status},</if>
<if test="description != null">description = #{description},</if>
<if test="image != null">image = #{image},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateUser != null">update_user = #{updateUser},</if>
</set>
where id = #{id}
</update>