| | |
| | | Boolean upcomment(String ids, String type); |
| | | |
| | | ArticleVO getArticleOne(ArticleVO article); |
| | | |
| | | String getDistrictId(String houseCode); |
| | | } |
| | |
| | | |
| | | |
| | | <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> |
| | |
| | | import org.springblade.modules.article.vo.ArticleVO; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhongrj |
| | | * @title 资讯服务实现层 |
| | |
| | | @Service |
| | | |
| | | public class ArticleServiceImpl extends ServiceImpl<ArticleMapper, Article> implements ArticleService { |
| | | |
| | | |
| | | /** |
| | | * 查询资讯分页信息 |
| | |
| | | */ |
| | | @Override |
| | | public IPage<ArticleVO> selectArticlePageByApp(IPage<ArticleVO> page, ArticleVO article) { |
| | | return page.setRecords(baseMapper.selectArticlePageByApp(page,article)); |
| | | // 查询用户小区的id |
| | | String districId = baseMapper.getDistrictId(article.getHouseCode()); |
| | | article.setDistrictId(districId); |
| | | List<ArticleVO> articleVOS = baseMapper.selectArticlePageByApp(page, article); |
| | | return page.setRecords(articleVOS); |
| | | } |
| | | |
| | | @Override |
| | |
| | | |
| | | private List<List<String>> articleList; |
| | | |
| | | |
| | | private String houseCode; |
| | | |
| | | private String districtId; |
| | | |
| | | } |
| | |
| | | jc.deleted_falg, |
| | | bu.name, |
| | | bu.avatar, |
| | | jc.circle_type |
| | | (selelct count(1) from jczz_circle_like jcl where jcl.circle_id = jc.id and user_id = #{userId} ) likeFlag |
| | | jc.circle_type, |
| | | (select count(1) from jczz_circle_like jcl where jcl.circle_id = jc.id and jcl.user_id = #{circle.userId} ) likeFlag |
| | | from jczz_circle jc left join blade_user bu on jc.user_id = bu.id |
| | | <where> |
| | | <if test="circle.id != null "> and id = #{circle.id}</if> |