| | |
| | | |
| | | |
| | | <select id="selectArticleBrowsePage" resultMap="articleBrowseResultMap"> |
| | | select * from jczz_article_browse where is_deleted = 0 |
| | | select * from jczz_article_browse |
| | | <where> |
| | | <if test="articleBrowse.id != null "> and id = #{articleBrowse.id}</if> |
| | | <if test="articleBrowse.articleId != null "> and article_id = #{articleBrowse.articleId}</if> |
| | | <if test="articleBrowse.createTime != null "> and create_time = #{articleBrowse.createTime}</if> |
| | | <if test="articleBrowse.createUser != null "> and create_user = #{articleBrowse.createUser}</if> |
| | | <if test="articleBrowse.isDeleted != null "> and is_deleted = #{articleBrowse.isDeleted}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | |