linwei
2024-01-04 9d521d0ff5fe8b09ceb9d7f2ec0f883048860810
src/main/java/org/springblade/modules/article/mapper/ArticleMapper.xml
@@ -40,7 +40,6 @@
    </select>
    <sql id="selectArticle">
        select
            id,
@@ -61,7 +60,9 @@
            update_user,
            create_user,
            is_deleted,
            article_range
            article_range,
            building,
            unit
        from
            jczz_article
    </sql>
@@ -111,6 +112,15 @@
                and (ja.article_range like concat('%',#{article.districtId},'%')
                or ja.article_range is null)
            </if>
            <if test="article.building != null and article.building != ''">
                and (ja.building = #{article.building}
                or ja.building is null)
            </if>
            <if test="article.unit != null and article.unit != ''">
                and (ja.unit = #{article.unit}
                or ja.unit is null)
            </if>
        </if>
        <!-- 查询文章 -->
        <if test="article.eventType == null">
@@ -152,6 +162,16 @@
                and (ja.article_range like concat('%',#{article.districtId},'%')
                or ja.article_range is null)
            </if>
            <if test="article.building != null and article.building != ''">
                and (ja.building = #{article.building}
                or ja.building is null)
            </if>
            <if test="article.unit != null and article.unit != ''">
                and (ja.unit = #{article.unit}
                or ja.unit is null)
            </if>
        </if>
        order by ja.create_time desc