目录

前言:

补充参考答案:


前言:

苍穹外卖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>
Logo

火山引擎开发者社区是火山引擎打造的AI技术生态平台,聚焦Agent与大模型开发,提供豆包系列模型(图像/视频/视觉)、智能分析与会话工具,并配套评测集、动手实验室及行业案例库。社区通过技术沙龙、挑战赛等活动促进开发者成长,新用户可领50万Tokens权益,助力构建智能应用。

更多推荐