| | |
| | | |
| | | |
| | | <select id="selectArticlePageByApp" resultMap="noticeResultMap"> |
| | | <!-- 查询报名和议事 --> |
| | | <if test="article.eventType != null"> |
| | | select ja.id, |
| | | ja.title, |
| | | ja.type, |
| | |
| | | ja.update_user, |
| | | ja.create_user, |
| | | ja.is_deleted, |
| | | bdb.dict_value dictValue, |
| | | jpd.id pdId, |
| | | (select bdb.dict_value from blade_dict_biz bdb where bdb.parent_id='1722966265111248897' and ja.article_type = bdb.dict_key) dictValue, |
| | | jpd.event_type |
| | | from jczz_article ja LEFT JOIN blade_dict_biz bdb on ja.article_type = bdb.dict_key |
| | | from jczz_article ja |
| | | LEFT JOIN jczz_public_discuss jpd on jpd.article_id=ja.id |
| | | where ja.is_deleted = 0 |
| | | and ja.publish = 1 |
| | | and bdb.parent_id = '1722966265111248897' |
| | | <if test="article.articleType != null and article.articleType != ''"> |
| | | and ja.article_type = #{article.articleType} |
| | | </if> |
| | | <if test="article.eventType != null"> |
| | | and jpd.event_type = #{article.eventType} |
| | | </if> |
| | | |
| | | <if test="article.districtId != null and article.districtId != ''"> |
| | | and (ja.article_range like concat('%',#{article.districtId},'%') |
| | | or ja.article_range is null) |
| | | </if> |
| | | </if> |
| | | <!-- 查询文章 --> |
| | | <if test="article.eventType == null"> |
| | | select ja.id, |
| | | ja.title, |
| | | ja.type, |
| | | ja.url, |
| | | ja.video_url, |
| | | ja.source_id, |
| | | ja.source_name, |
| | | ja.article_type, |
| | | ja.recommend, |
| | | ja.publish, |
| | | ja.iscomment, |
| | | ja.view_number, |
| | | ja.create_time, |
| | | ja.update_time, |
| | | ja.update_user, |
| | | ja.create_user, |
| | | (select bdb.dict_value from blade_dict_biz bdb where bdb.parent_id='1722966265111248897' and ja.article_type |
| | | = bdb.dict_key) dictValue, |
| | | ja.is_deleted |
| | | from jczz_article ja |
| | | where ja.is_deleted = 0 |
| | | and ja.publish = 1 |
| | | <if test="article.articleType != null and article.articleType != ''"> |
| | | and ja.article_type = #{article.articleType} |
| | | </if> |
| | | |
| | | <if test="article.districtId != null and article.districtId != ''"> |
| | | and ja.article_range like concat('%',#{article.districtId},'%') |
| | | or ja.article_range is null |
| | | </if> |
| | | </if> |
| | | |
| | | order by ja.create_time desc |
| | | </select> |
| | | |
| | |
| | | and bdb.parent_id = '1722966265111248897' |
| | | order by ja.create_time desc |
| | | </select> |
| | | |
| | | |
| | | <select id="getDistrictId" resultType="java.lang.String"> |
| | | SELECT jd.id |
| | | FROM jczz_doorplate_address jda |
| | | LEFT JOIN jczz_district jd ON jda.aoi_code = jd.aoi_code |
| | | WHERE jda.address_code = #{houseCode} |
| | | |
| | | </select> |
| | | </mapper> |