wl
2022-11-15 83e0c64afb46660ea75ccb3794e34a655e1aa5fa
案卷查询接口bug
1个文件已修改
8 ■■■■ 已修改文件
ycl-platform/src/main/resources/mapper/caseHandler/BaseCaseMapper.xml 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ycl-platform/src/main/resources/mapper/caseHandler/BaseCaseMapper.xml
@@ -131,10 +131,10 @@
        left join ums_data_dictionary t2 on t1.category = t2.id
        left join ums_sccg_region t3 on t1.community_id=t3.id
        <where>
            <if test="category != null">
            <if test="categories != null">
                category = #{categories}
            </if>>
            <if test="community_id != null">
            </if>
            <if test="communityId != null">
                and community_id = #{communityId}
            </if>
            <if test="code != null and code !=''">
@@ -143,7 +143,7 @@
            <if test="site != null and site!=''">
                and site like contact('%',#{site},'%')
            </if>
            <if test="startTime !='' and endTime !=''">
            <if test="startTime !='' and endTime !='' and startTime!=null and endTime !=null">
                and create_time between #{startTime} and #{endTime}
            </if>
        </where>