| | |
| | | "SELECT\n" + |
| | | "d.id,\n" + |
| | | "d.vote_title,\n" + |
| | | "d.address,\n" + |
| | | "if(d.address is null or d.address='null',a.name,d.address )address,\n" + |
| | | "d.photo_pah,\n" + |
| | | "d.`discuss_subject`,\n" + |
| | | "d.type,\n" + |
| | |
| | | "</script>") |
| | | IPage<ComActDiscussCommentVO> pageDiscussCommentApplets(Page page, @Param("pageComActDiscussCommentDTO")PageComActDiscussCommentDTO pageComActDiscussCommentDTO); |
| | | |
| | | @Select("select name from com_act where community_id=#{communityId}") |
| | | @Select("select name,address from com_act where community_id=#{communityId}") |
| | | ComActVO selectCommunity(Long communityId); |
| | | |
| | | @Select("SELECT \n" + |