lidongdong
2023-11-16 dd7a6122edfaf8662787b2955877d95c1af112cd
评论修改
1个文件已修改
18 ■■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/resources/mapper/NewFightProjectEvaluateMapper.xml 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/resources/mapper/NewFightProjectEvaluateMapper.xml
@@ -67,6 +67,12 @@
            <if test="item.userId != null and item.userId != '' " >
                user_id,
            </if>
            <if test="item.content != null and item.content != '' " >
                content,
            </if>
            <if test="item.score != null and item.score != '' " >
                score,
            </if>
            creation_time
        </trim>
        values
@@ -79,6 +85,12 @@
            </if>
            <if test="item.userId != null and item.userId != '' " >
                #{item.userId},
            </if>
            <if test="item.content != null and item.content != '' " >
                #{item.content},
            </if>
            <if test="item.score != null and item.score != '' " >
                #{item.score},
            </if>
            sysdate()
        </trim>
@@ -96,6 +108,12 @@
            <if test="item.userId != null and item.userId != '' " >
                user_id=#{item.userId},
            </if>
            <if test="item.content != null and item.content != '' " >
                content=#{item.content},
            </if>
            <if test="item.score != null and item.score != '' " >
                score=#{item.score},
            </if>
            update_time=sysdate()
        </set>
        where id = #{item.id}