| | |
| | | <result column="update_user" property="updateUser"/> |
| | | <result column="create_user" property="createUser"/> |
| | | <result column="is_deleted" property="isDeleted"/> |
| | | |
| | | <!-- <collection property="lickFlag" javaType="int"--> |
| | | <!-- column="id" select="selectStlLick">--> |
| | | <!-- </collection>--> |
| | | |
| | | <result property="articleRange" column="article_range" /> |
| | | <collection property="countNumber" column="id" javaType="int" select="selectStlCount"> |
| | | </collection> |
| | | |
| | | </resultMap> |
| | | |
| | | <!-- <select id="selectStlLick" parameterType="Long" resultType="int">--> |
| | | <!-- select IFNULL(jnl.id, 0) lickFlag--> |
| | | <!-- FROM jczz_notice jn--> |
| | | <!-- LEFT JOIN jczz_notice_like jnl ON jn.id = jnl.notice_id--> |
| | | <!-- WHERE jnl.notice_user_id = #{notice.userId}--> |
| | | <!-- and jn.is_deleted = 0--> |
| | | <!-- and jn.id = #{id}--> |
| | | <!-- </select>--> |
| | | |
| | | <select id="selectStlCount" resultType="int"> |
| | | select count(1) countNumber |
| | |
| | | and jnl.delete_flag = 0 |
| | | and jn.id = #{id} |
| | | </select> |
| | | |
| | | |
| | | |
| | | <sql id="selectArticle"> |
| | |
| | | update_time, |
| | | update_user, |
| | | create_user, |
| | | is_deleted |
| | | is_deleted, |
| | | article_range |
| | | from |
| | | jczz_article |
| | | </sql> |
| | |
| | | <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> |
| | |
| | | ja.update_user, |
| | | ja.create_user, |
| | | ja.is_deleted, |
| | | ja.article_range, |
| | | bdb.dict_value dictValue |
| | | from jczz_article ja LEFT JOIN blade_dict_biz bdb on ja.article_type = bdb.dict_key |
| | | <where> |
| | |
| | | <if test="updateUser != null "> and ja.update_user = #{updateUser}</if> |
| | | <if test="createUser != null "> and ja.create_user = #{createUser}</if> |
| | | <if test="isDeleted != null "> and ja.is_deleted = #{isDeleted}</if> |
| | | <if test="articleRange != null and articleRange != ''"> and article_range = #{articleRange}</if> |
| | | </where> |
| | | and ja.is_deleted = 0 |
| | | and ja.publish = 1 |