| | |
| | | <result column="update_user" property="updateUser"/> |
| | | <result column="create_user" property="createUser"/> |
| | | <result column="is_deleted" property="isDeleted"/> |
| | | <result property="articleRange" column="article_range" /> |
| | | <result property="articleRange" column="article_range"/> |
| | | <collection property="countNumber" column="id" javaType="int" select="selectStlCount"> |
| | | </collection> |
| | | |
| | |
| | | and jnl.delete_flag = 0 |
| | | and jn.id = #{id} |
| | | </select> |
| | | |
| | | |
| | | |
| | | <sql id="selectArticle"> |
| | |
| | | update_user, |
| | | create_user, |
| | | is_deleted, |
| | | article_range |
| | | article_range, |
| | | building, |
| | | unit |
| | | from |
| | | jczz_article |
| | | </sql> |
| | |
| | | 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"> |
| | |
| | | <if test="article.districtId != null and article.districtId != ''"> |
| | | 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> |
| | | |
| | |
| | | sys_collect col |
| | | LEFT JOIN jczz_article art on art.id = col.collect_article |
| | | WHERE |
| | | 1 = 1 AND collect_user = #{article.userid} |
| | | 1 = 1 AND collect_user = #{article.userid} |
| | | <if test="article.articleType!=null and article.articleType!=''"> |
| | | and article_type LIKE CONCAT ('%', #{article.articleType},'%') |
| | | </if> |