lidongdong
2023-08-31 110bd73658a2266a3f509b37230475c5ea13b39e
修改志愿者活动发放积分明细记录没有userId和社区id  2
1个文件已修改
9 ■■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/resources/mapper/VolunteerIntegralRecordMapper.xml 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/resources/mapper/VolunteerIntegralRecordMapper.xml
@@ -70,6 +70,9 @@
            <if test="volunteerIntegralRecordVO.communityId != null">
                community_id,
            </if>
            <if test="volunteerIntegralRecordVO.userId != null">
                user_id,
            </if>
            creation_time
        </trim>
        values
@@ -88,6 +91,9 @@
            </if>
            <if test="volunteerIntegralRecordVO.communityId != null">
                #{volunteerIntegralRecordVO.communityId},
            </if>
            <if test="volunteerIntegralRecordVO.userId != null">
                #{volunteerIntegralRecordVO.userId},
            </if>
            sysdate()
        </trim>
@@ -111,6 +117,9 @@
            <if test="volunteerIntegralRecordVO.communityId != null">
                community_id=#{volunteerIntegralRecordVO.communityId},
            </if>
            <if test="volunteerIntegralRecordVO.userId != null">
                user_id=#{volunteerIntegralRecordVO.userId},
            </if>
            update_time=sysdate()
        </set>
        where id = #{volunteerIntegralRecordVO.id}