lidongdong
2023-08-21 674872c0e037da641650a6a3918089d7e91c2849
修改小程序获取志愿者活动报错
1个文件已修改
6 ■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/resources/mapper/VolunteerActivityMapper.xml 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/resources/mapper/VolunteerActivityMapper.xml
@@ -95,16 +95,16 @@
                and (`name` like concat('%',#{name},'%')
            </if>
            <if  test="acState!=null">
                and ac_state =# {acState}
                and ac_state =#{acState}
            </if>
            <if  test="acType!=null">
                and ac_type =# {acType}
                and ac_type =#{acType}
            </if>
            <if  test="actityBeginTime!=null">
                and actity_begin_time >= #{actityBeginTime}
            </if>
            <if  test="actityEndTime!=null">
                and actity_end_time <![CDATA[ <= ]]> # {actityEndTime}
                and actity_end_time <![CDATA[ <= ]]> #{actityEndTime}
            </if>
        </where>