| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
- <!-- 文章管理持久化层配置文件 -->
- <mapper namespace="net.mingsoft.cms.dao.IArticleDao">
- <!-- 表栏目名 开始 -->
- <sql id="column_list">
- a.ARTICLE_BASICID,a.ARTICLE_CONTENT,a.ARTICLE_AUTHOR,a.ARTICLE_TYPE,a.ARTICLE_SOURCE,a.ARTICLE_URL,a.ARTICLE_KEYWORD,a.ARTICLE_FREEORDER,a.ARTICLE_WEBID,
- b.BASIC_ID,b.BASIC_TITLE,b.BASIC_DESCRIPTION,b.BASIC_THUMBNAILS,b.BASIC_HIT,b.BASIC_DISPLAY,b.BASIC_DATETIME,b.BASIC_UPDATETIME,b.BASIC_PEOPLEID,b.BASIC_CATEGORYID,b.BASIC_SORT
- </sql>
- <!-- 表栏目名 结束 -->
- <!-- 获取表字段 开始 -->
- <resultMap type="net.mingsoft.cms.entity.ArticleEntity" id="resultMap">
- <id column="ARTICLE_BASICID" property="articleID" /> <!-- 与cms_article表绑定id -->
- <result column="ARTICLE_CONTENT" property="articleContent" /> <!-- 文章内容 -->
- <result column="ARTICLE_AUTHOR" property="articleAuthor" /> <!-- 文章作者 -->
- <result column="ARTICLE_TYPE" property="articleType" /> <!-- 文章属性 -->
- <result column="ARTICLE_SOURCE" property="articleSource" /> <!-- 文章来源 -->
- <result column="ARTICLE_URL" property="articleUrl" /> <!-- 文章跳转链接地址 -->
- <result column="ARTICLE_KEYWORD" property="articleKeyword" /> <!-- 文章关键字 -->
- <result column="ARTICLE_FREEORDER" property="articleFreeOrder" /><!--
- 文章自定义显示顺序 -->
- <result column="ARTICLE_WEBID" property="articleWebId" /> <!-- 站点id -->
- <result column="BASIC_ID" property="basicId" /> <!-- 与表basic绑定 自增长ID -->
- <result column="BASIC_TITLE" property="basicTitle" /> <!-- 文章标题 -->
- <result column="BASIC_DESCRIPTION" property="basicDescription" /><!--
- 文章描述 -->
- <result column="BASIC_THUMBNAILS" property="basicThumbnails" /> <!-- 文章缩略图 -->
- <result column="BASIC_HIT" property="basicHit" /> <!-- 文章点击次数 -->
- <result column="BASIC_DATETIME" property="basicDateTime" /> <!-- 文章发布时间 -->
- <result column="BASIC_UPDATETIME" property="basicUpdateTime" /> <!-- 文章更新时间 -->
- <result column="BASIC_PEOPLEID" property="basicPeopleId" /> <!-- 文章发布者id -->
- <result column="BASIC_CATEGORYID" property="basicCategoryId" /> <!-- 文章所属主栏目id -->
- <result column="BASIC_SORT" property="basicSort" />
- <result column="BASIC_DISPLAY" property="basicDisplay" />
- <!-- 一对一关联栏目 -->
- <association property="column" column="COLUMN_CATEGORY_ID"
- javaType="net.mingsoft.basic.entity.ColumnEntity">
- <result property="columnPath" column="column_path" />
- <result property="categoryTitle" column="category_title" />
- <result property="categoryId" column="category_id" />
- <result property="columnContentModelId" column="COLUMN_CM_ID" />
- <result property="columnType" column="COLUMN_TYPE" />
- </association>
- </resultMap>
- <!-- 获取表字段 结束 -->
- <!-- 通过视图查询返回结果集 开始 -->
- <resultMap type="net.mingsoft.cms.bean.ColumnArticleIdBean" id="resultMapBean">
- <result column="ARTICLE_BASICID" property="articleId" />
- <result column="column_path" property="columnPath"/>
- <result column="column_url" property="columnUrl" />
- <result column="column_listurl" property="columnListUrl" />
- <result column="category_title" property="categoryTitle" />
- <result column="category_id" property="categoryId" />
- <result column="COLUMN_CM_ID" property="columnContentModelId" />
- <result column="category_categoryid" property="categoryCategoryId" /><!--关联表category的父类别ID category_categoryid字段 -->
- <result column="category_modelId" property="categoryModelId" /><!--关联表category的所属模块ID category_modelid字段 -->
- <result column="COLUMN_TYPE" property="columnType" />
- <result column="category_parent_id" property="categoryParentId" /><!--关联表category的字典对应编号 -->
- </resultMap>
- <!-- 通过视图查询返回结果集 结束 -->
- <!-- 通过视图查询返回结果集 开始 -->
- <resultMap type="net.mingsoft.cms.entity.ArticleEntity" id="viewResultMap">
- <id column="ARTICLE_BASICID" property="articleID" /> <!-- 与cms_article表绑定id -->
- <result column="ARTICLE_CONTENT" property="articleContent" /> <!-- 文章内容 -->
- <result column="ARTICLE_AUTHOR" property="articleAuthor" /> <!-- 文章作者 -->
- <result column="ARTICLE_TYPE" property="articleType" /> <!-- 文章属性 -->
- <result column="ARTICLE_SOURCE" property="articleSource" /> <!-- 文章来源 -->
- <result column="ARTICLE_URL" property="articleUrl" /> <!-- 文章跳转链接地址 -->
- <result column="ARTICLE_KEYWORD" property="articleKeyword" /> <!-- 文章关键字 -->
- <result column="ARTICLE_FREEORDER" property="articleFreeOrder" /><!--
- 文章自定义显示顺序 -->
- <result column="ARTICLE_WEBID" property="articleWebId" /> <!-- 站点id -->
- <result column="BASIC_ID" property="basicId" /> <!-- 与表basic绑定 自增长ID -->
- <result column="BASIC_TITLE" property="basicTitle" /> <!-- 文章标题 -->
- <result column="BASIC_DESCRIPTION" property="basicDescription" /><!--
- 文章描述 -->
- <result column="BASIC_THUMBNAILS" property="basicThumbnails" /> <!-- 文章缩略图 -->
- <result column="BASIC_HIT" property="basicHit" /> <!-- 文章点击次数 -->
- <result column="BASIC_DATETIME" property="basicDateTime" /> <!-- 文章发布时间 -->
- <result column="BASIC_UPDATETIME" property="basicUpdateTime" /> <!-- 文章更新时间 -->
- <result column="BASIC_CATEGORYID" property="basicCategoryId" /> <!-- 文章所属主栏目id -->
- <result column="BASIC_SORT" property="basicSort" />
- <result column="BASIC_DISPLAY" property="basicDisplay" />
- <!-- 一对一关联栏目 -->
- <association property="column"
- javaType="net.mingsoft.basic.entity.ColumnEntity">
- <result property="columnPath" column="column_path" />
- <result property="categoryTitle" column="category_title" />
- <result property="categoryId" column="category_id" />
- <result property="columnContentModelId" column="COLUMN_CM_ID" />
- <result property="columnType" column="COLUMN_TYPE" />
- </association>
- </resultMap>
- <!-- 通过视图查询返回结果集 结束 -->
- <!-- 文章bean返回数据列表 开始 -->
- <sql id="bean_column_list">
- BASIC_ID,ARTICLE_AUTHOR,ARTICLE_TYPE,ARTICLE_SOURCE,ARTICLE_URL,ARTICLE_KEYWORD,ARTICLE_FREEORDER,
- BASIC_DISPLAY,BASIC_TITLE,BASIC_DESCRIPTION,BASIC_THUMBNAILS,BASIC_HIT,BASIC_DATETIME,BASIC_UPDATETIME,BASIC_PEOPLEID,BASIC_CATEGORYID,BASIC_SORT
- </sql>
- <!-- 表栏目名结束 -->
- <!-- 文章基础数据返回数据列表 开始 -->
- <sql id="basic_data_list">
- BASIC_DISPLAY,BASIC_ID,BASIC_CATEGORYID,BASIC_TITLE,BASIC_DESCRIPTION,BASIC_THUMBNAILS,BASIC_HIT,BASIC_DATETIME,BASIC_UPDATETIME,BASIC_PEOPLEID,BASIC_SORT,
- ARTICLE_BASICID,ARTICLE_AUTHOR,ARTICLE_CONTENT,ARTICLE_TYPE,ARTICLE_SOURCE,ARTICLE_URL,ARTICLE_KEYWORD,ARTICLE_FREEORDER,ARTICLE_WEBID,
- COLUMN_KEYWORD,COLUMN_DESCRIP,COLUMN_TYPE,COLUMN_URL,COLUMN_LISTURL,COLUMN_PATH,COLUMN_CM_ID,COLUMN_CATEGORY_ID,
- CATEGORY_TITLE,CATEGORY_APPID,CATEGORY_ID
- </sql>
- <!-- 文章基础数据返回数据列表结束 -->
- <!-- 添加文章信息 开始 -->
- <insert id="saveEntity" parameterType="net.mingsoft.base.entity.BaseEntity">
- insert into cms_article
- <!-- 添加表字段 -->
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="basicId != null">ARTICLE_BASICID,</if>
- <if test="articleContent != null">ARTICLE_CONTENT,</if>
- <if test="articleAuthor != null">ARTICLE_AUTHOR,</if>
- <if test="articleType != null">ARTICLE_TYPE,</if>
- <if test="articleSource != null">ARTICLE_SOURCE,</if>
- <if test="articleUrl != null">ARTICLE_URL,</if>
- <if test="articleKeyword != null">ARTICLE_KEYWORD,</if>
- <if test="articleFreeOrder != null">ARTICLE_FREEORDER,</if>
- <if test="articleWebId != null">ARTICLE_WEBID,</if>
- </trim>
- <!-- 注入控制层字段 -->
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="basicId != null">#{basicId},</if>
- <if test="articleContent != null">#{articleContent},</if>
- <if test="articleAuthor != null">#{articleAuthor},</if>
- <if test="articleType != null">#{articleType},</if>
- <if test="articleSource != null">#{articleSource},</if>
- <if test="articleUrl != null">#{articleUrl},</if>
- <if test="articleKeyword != null">#{articleKeyword},</if>
- <if test="articleFreeOrder != null">#{articleFreeOrder},</if>
- <if test="articleWebId != null">#{articleWebId},</if>
- </trim>
- </insert>
- <!-- 添加文章信息 结束 -->
- <!-- 删除文章管理的信息 开始 -->
- <delete id="deleteEntity" parameterType="int">
- DELETE b from basic b WHERE b.basic_id=#{basicId};
- DELETE c from cms_article c WHERE c.article_basicid=#{basicId}
- </delete>
- <!-- 删除文章管理的信息 结束 -->
- <!-- 更新文章管理的信息 开始 -->
- <update id="updateEntity" parameterType="net.mingsoft.base.entity.BaseEntity">
- update cms_article
- <set>
- <if test="articleContent != null">ARTICLE_CONTENT=#{articleContent},</if>
- <if test="articleAuthor != null">ARTICLE_AUTHOR=#{articleAuthor},</if>
- <if test="articleType != null">ARTICLE_TYPE=#{articleType},</if>
- <if test="articleSource != null">ARTICLE_SOURCE=#{articleSource},</if>
- <if test="articleUrl != null">ARTICLE_URL=#{articleUrl},</if>
- <if test="articleKeyword != null">ARTICLE_KEYWORD=#{articleKeyword},</if>
- <if test="articleFreeOrder != null">ARTICLE_FREEORDER=#{articleFreeOrder},</if>
- <if test="articleWebId != null">ARTICLE_WEBID=#{articleWebId},</if>
- </set>
- where ARTICLE_BASICID = #{basicId}
- </update>
- <!-- 更新文章管理的信息 开始 -->
- <!-- 查找文章管理的信息 开始 -->
- <select id="getEntity" resultMap="resultMap" parameterType="int">
- select
- <include refid="column_list" />
- ,c.CATEGORY_TITLE,cl.column_path,cl.column_type,c.CATEGORY_id,cl.COLUMN_CM_ID
- FROM
- basic b
- LEFT JOIN
- category c ON b.BASIC_CATEGORYID = c.CATEGORY_ID
- LEFT JOIN basic_column
- cl ON c.CATEGORY_ID = cl.COLUMN_CATEGORY_ID
- LEFT
- JOIN cms_article a ON
- a.ARTICLE_BASICID = b.BASIC_ID
- <!-- 查询与关联表id相同的信息 -->
- where a.ARTICLE_BASICID=#{basicId}
- </select>
- <!-- 查找文章管理的信息 结束 -->
- <!-- 标题字段query -->
- <sql id="queryWhereBasicTitle" databaseId="mysql">
- CONCAT('%',#{article.basicTitle},'%')
- </sql>
- <sql id="queryWhereBasicTitle" databaseId="oracle">
- '%'||#{ article.basicTitle}||'%'
- </sql>
- <sql id="queryWhereBasicTitle" databaseId="sqlServer">
- '%'+#{ article.basicTitle}+'%'
- </sql>
- <!-- flag字段 -->
- <sql id="queryWhereFlag" databaseId="mysql">
- CONCAT('%',#{flag},'%')
- </sql>
- <sql id="queryWhereFlag" databaseId="oracle">
- '%'||#{ flag}||'%'
- </sql>
- <sql id="queryWhereFlag" databaseId="sqlServer">
- '%'+#{ flag}+'%'
- </sql>
- <!-- noFlag字段 -->
- <sql id="queryWhereNoFlag" databaseId="mysql">
- CONCAT('%',#{noFlag},'%')
- </sql>
- <sql id="queryWhereNoFlag" databaseId="oracle">
- '%'||#{ noFlag}||'%'
- </sql>
- <sql id="queryWhereNoFlag" databaseId="sqlServer">
- '%'+#{ noFlag}+'%'
- </sql>
- <!-- 已过期 -->
- <select id="count" resultType="int">
- select count(basic_id) FROM basic b
- LEFT JOIN category c ON
- b.BASIC_CATEGORYID = c.CATEGORY_ID
- LEFT JOIN basic_column cl ON
- c.CATEGORY_ID = cl.COLUMN_CATEGORY_ID
- LEFT JOIN cms_article a ON
- a.ARTICLE_BASICID = b.BASIC_ID
- <where>
- a.ARTICLE_WEBID = #{webId}
- <if test="article != null ">
- <if test="article.basicTitle != null and article.basicTitle != ''">
- and b.BASIC_TITLE like
- <include refid="queryWhereBasicTitle"></include>
- </if>
- </if>
- <if test="basicCategoryIds != null">
- and b.BASIC_CATEGORYID in
- <foreach collection="basicCategoryIds" index="index" item="categoryId"
- open="(" separator="," close=")">
- #{categoryId}
- </foreach>
- </if>
- <if test="flag != null">
- and a.ARTICLE_TYPE like <include refid="queryWhereFlag"></include>
- </if>
- <if test="noFlag != null">
- and a.ARTICLE_TYPE not like <include refid="queryWhereNoFlag"></include>
- </if>
- </where>
- </select>
- <!-- 列表查询结束 -->
- <!-- 列表查询开始 -->
- <select id="query" resultMap="resultMap" >
- select
- <include refid="column_list" />
- ,c.CATEGORY_TITLE,c.CATEGORY_ID
- ,cl.COLUMN_PATH,cl.COLUMN_CM_ID,cl.COLUMN_TYPE,cl.COLUMN_CATEGORY_ID
- FROM cms_article a LEFT JOIN basic b ON a.ARTICLE_BASICID = b.BASIC_ID
- LEFT JOIN basic_column cl ON b.BASIC_CATEGORYID = cl.COLUMN_CATEGORY_ID
- JOIN category c ON c.CATEGORY_ID = cl.COLUMN_CATEGORY_ID
- where a.ARTICLE_WEBID = #{webId}
- <if test="article != null ">
- <if test="article.basicTitle != null and article.basicTitle != ''">
- and b.BASIC_TITLE like
- <include refid="queryWhereBasicTitle"></include>
- </if>
- </if>
- <if test="basicCategoryIds != null">
- and b.BASIC_CATEGORYID in
- <foreach collection="basicCategoryIds" index="index" item="categoryId"
- open="(" separator="," close=")">
- #{categoryId}
- </foreach>
- </if>
- <if test="flag != null">
- and a.ARTICLE_TYPE like <include refid="queryWhereFlag"></include>
- </if>
- <if test="noFlag != null">
- and a.ARTICLE_TYPE not like <include refid="queryWhereNoFlag"></include>
- </if>
- <if test="article !=null and article.basicDisplay > -1">
- and b.basic_display = #{article.basicDisplay}
- </if>
- <if test="beginTime!=null and beginTime!=''">
- and basic_updatetime >= #{beginTime}
- </if>
- <if test="endTime!=null and endTime!=''">
- and basic_updatetime >= #{endTime}
- </if>
- <if test="orderBy != null">
- order by
- <choose>
- <when test='orderBy=="sort"'>basic_sort</when>
- <when test='orderBy=="date"'>basic_datetime</when>
- <when test='orderBy=="hit"'>basic_hit</when>
- <when test='orderBy=="updatedate"'>basic_updatedate</when>
- <when test='orderBy=="id"'>basic_id</when>
- <otherwise>
- ${orderBy}
- </otherwise>
- </choose>
- </if>
- <if test="orderBy==null">
- order by b.basic_id
- </if>
- <if test="order == true">desc</if>
- <if test="order == false">asc</if>
- </select>
- <sql id="queryWhereCategoryId" databaseId="mysql">
- find_in_set('${categoryId}',CATEGORY_PARENT_ID)
- </sql>
- <sql id="queryWhereCategoryId" databaseId="oracle" >
- instr(','||'${categoryId}'||',', ','||CATEGORY_PARENT_ID||',')>0
- </sql>
- <sql id="queryWhereCategoryId" databaseId="sqlServer">
- CHARINDEX(','+'${categoryId}'+',' , ','+CATEGORY_PARENT_ID +',')>0
- </sql>
- <!-- 根据站点编号、开始、结束时间和栏目编号查询文章编号集合 -->
- <select id="queryIdsByCategoryIdForParser" resultMap="resultMapBean" >
- select
- ARTICLE_BASICID,cl.*,c.*
- FROM cms_article a LEFT JOIN basic ON a.ARTICLE_BASICID = basic.BASIC_ID
- LEFT JOIN basic_column cl ON basic.BASIC_CATEGORYID = cl.COLUMN_CATEGORY_ID
- JOIN category c ON c.CATEGORY_ID = cl.COLUMN_CATEGORY_ID
- where
- <if test="appId > 0">
- a.ARTICLE_WEBID = #{appId}
- </if>
- <!-- 查询子栏目数据 -->
- <if test="categoryId > 0">
- and (basic.basic_categoryid=#{categoryId} or basic.basic_categoryid in
- (select category_id FROM category where <include refid="queryWhereCategoryId"></include>))
- </if>
- <if test="beginTime!=null and beginTime!=''">
- and basic.basic_updatetime >= #{beginTime}
- </if>
- <if test="endTime!=null and endTime!=''">
- and basic.basic_updatetime >= #{endTime}
- </if>
- <if test="orderBy!=null and order!=null and orderBy!='' and order!=''">
- ORDER BY `${orderBy}` ${order}
- </if>
- </select>
- <!--查询页面栏目的文章 开始 -->
- <!-- 已过期 -->
- <select id="queryListByColumnId" resultMap="resultMap">
- select
- <include refid="column_list" />
- from cms_article a left join basic b on b.basic_id=a.ARTICLE_BASICID
- where b.BASIC_CATEGORYID = #{basicCategoryId}
- </select>
- <!-- 查询页面栏目的文章 结束 -->
- <!-- 根据字段条件查找文章实体开始 -->
- <sql id="queryLike" databaseId="mysql">
- like CONCAT("%",
- <foreach item="val" index="index" collection="item[3]">
- <if test="index==0">#{val}</if>
- </foreach>
- ,"%")
- </sql>
- <sql id="queryLike" databaseId="oracle">
- like '%'||
- <foreach item="val" index="index" collection="item[3]">
- <if test="index==0">#{val}</if>
- </foreach>
- ||'%'
- </sql>
- <sql id="queryLike" databaseId="sqlServer">
- like '%'+
- <foreach item="val" index="index" collection="item[3]">
- <if test="index==0">#{val}</if>
- </foreach>
- +'%'
- </sql>
- <!-- 已过期 -->
- <select id="queryListForSearch" resultMap="resultMap">
- select
- <include refid="column_list" />
- ,c.CATEGORY_TITLE,cl.column_path,c.CATEGORY_id,cl.COLUMN_CM_ID,cl.column_type
- from cms_article a
- left join basic b
- on b.basic_id=a.ARTICLE_BASICID
- left join category c
- ON b.BASIC_CATEGORYID = c.CATEGORY_ID
- left join
- basic_column cl
- on c.CATEGORY_ID = cl.COLUMN_CATEGORY_ID
- <if test="tableName!=null">left join ${tableName} d on d.basicId=a.ARTICLE_BASICID
- </if>
- where c.DEL=0 and a.ARTICLE_WEBID = #{websiteId}
- <if test="ids!=null">
- and
- b.BASIC_CATEGORYID in
- <foreach item="id" index="key" collection="ids" open="("
- separator="," close=")">
- #{id.categoryId}
- </foreach>
- </if>
- <foreach item="item" index="key" collection="map" open=""
- separator="" close="">
- <if test=" item[0] == false">
- and ${key}
- </if>
- <if test="item[0]== true">
- and d.${key}
- </if>
- <!-- 数字类型的查找 item[1]:字段是否为数字类型false:数字 -->
- <if test="item[1] == false">
- <!--item[2]: 是采用等值还是区间查询。false:区间 itme[3][0]第一个值item[3][1]的二个值 -->
- <if test="item[2] == true">
- =
- <foreach item="val" index="index" collection="item[3]">#{val}
- </foreach>
- </if>
- <if test="item[2] == false">
- between
- <foreach item="val" index="index" collection="item[3]"
- separator="and">
- #{val}
- </foreach>
- </if>
- </if>
- <!-- 字符型数据的查找 item[1]:字段是否为数字类型true:字符串 -->
- <if test="item[1] == true">
- <!--item[2]: 是采用模糊查询。false:不采用模糊 -->
- <if test="item[2] == true">
- <include refid="queryLike"></include>
- </if>
- <if test="item[2] == false">
- =
- <foreach item="val" index="index" collection="item[3]">#{val}
- </foreach>
- </if>
- </if>
- </foreach>
- <if test="sortMap!=null">
- order by ${sortMap.order} ${sortMap.by}
- </if>
- </select>
- <!-- 根据字段条件查找文章实体结束 -->
- <!--已过期 根据字段条件查找文章实体总数开始 -->
- <select id="getSearchCount" resultType="int">
- select count(*) from
- cms_article a
- left join basic b
- on
- b.basic_id=a.ARTICLE_BASICID
- left join category c
- ON b.BASIC_CATEGORYID
- = c.CATEGORY_ID
- left join basic_column cl
- on c.CATEGORY_ID =
- cl.COLUMN_CATEGORY_ID
- <if test="tableName!=null and tableName!=''">left join ${tableName} d on d.basicId=a.ARTICLE_BASICID
- </if>
- where a.ARTICLE_WEBID = #{websiteId}
- <if test="ids!=null and ids!=''">
- and FIND_IN_SET(category_categoryid,'${ids}')
- </if>
- <foreach item="item" index="key" collection="map" open=""
- separator="" close="">
- <if test=" item[0] == false">
- and ${key}
- </if>
- <if test="item[0]== true">
- and d.${key}
- </if>
- <!-- 数字类型的查找 item[1]:字段是否为数字类型false:数字 -->
- <if test="item[1] == false">
- <!--item[2]: 是采用等值还是区间查询。false:区间 itme[3][0]第一个值item[3][1]的二个值 -->
- <if test="item[2] == true">
- =
- <foreach item="val" index="index" collection="item[3]">#{val}
- </foreach>
- </if>
- <if test="item[2] == false">
- between
- <foreach item="val" index="index" collection="item[3]"
- separator="and">
- #{val}
- </foreach>
- </if>
- </if>
- <!-- 字符型数据的查找 item[1]:字段是否为数字类型true:字符串 -->
- <if test="item[1] == true">
- <!--item[2]: 是采用模糊查询。false:不采用模糊 -->
- <if test="item[2] == true">
- <include refid="queryLike"></include>
- </if>
- <if test="item[2] == false">
- =
- <foreach item="val" index="index" collection="item[3]">#{val}
- </foreach>
- </if>
- </if>
- </foreach>
- </select>
- <!-- 根据字段条件查找文章实体总数结束 -->
- <select id="getById" resultMap="viewResultMap">
- select
- <include refid="basic_data_list" />
- from
- (((basic JOIN cms_article ON (BASIC_ID = ARTICLE_BASICID))
- JOIN basic_column ON (BASIC_CATEGORYID = COLUMN_CATEGORY_ID))
- JOIN category ON (COLUMN_CATEGORY_ID = CATEGORY_ID))
- <if test="contentModelTableName!=null">
- left join ${contentModelTableName} cmt on
- cmt.basicid=basic_id
- </if>
- where basic_id=#{basicId}
- </select>
- <!-- 通过文章标题、应用ID、模块编号来查询文章集合开始 -->
- <resultMap type="java.util.HashMap" id="resultTitleMap">
- <result column="basic_id" property="basicId" />
- <result column="basic_title" property="basicTitle" />
- <result column="basic_hit" property="basicHit" />
- <result column="basic_categoryid" property="basicCategoryId" />
- <result column="model_id" property="modelId" />
- </resultMap>
- <!-- 已过期 -->
- <!-- 查找上一篇下一篇 -->
- <sql id="selectOne">
- from
- (((basic JOIN cms_article ON (BASIC_ID = ARTICLE_BASICID))
- JOIN basic_column ON (BASIC_CATEGORYID = COLUMN_CATEGORY_ID))
- JOIN category ON (COLUMN_CATEGORY_ID = CATEGORY_ID))
- where category_appid=#{appId}
- <if test="flag==false">
- and basic_id < ${basicId}
- </if>
- <if test="flag==true">
- and basic_id > ${basicId}
- </if>
- <if test="categoryId!=null">
- and BASIC_CATEGORYID = #{categoryId}
- </if>
- </sql>
- <!-- 已过期 -->
- <select id="getNextOrPrevious" resultMap="resultMap" databaseId="mysql">
- select
- <include refid="basic_data_list" />
- <include refid="selectOne"></include>
- <if test="flag==false">
- order by basic_id desc
- </if>
- <if test="flag==true">
- order by basic_id asc
- </if>
- limit 0,1
- </select>
- <!-- 已过期 -->
- <select id="getNextOrPrevious" resultMap="resultMap" databaseId="oracle">
- select
- <include refid="basic_data_list" />
- <include refid="selectOne"></include>
- and rownum=1
- <if test="flag==false">
- order by basic_id desc
- </if>
- <if test="flag==true">
- order by basic_id asc
- </if>
- </select>
- <!-- 已过期 -->
- <select id="getNextOrPrevious" resultMap="resultMap" databaseId="sqlServer">
- select top(1)
- <include refid="basic_data_list" />
- <include refid="selectOne"></include>
- <if test="flag==false">
- order by basic_id desc
- </if>
- <if test="flag==true">
- order by basic_id asc
- </if>
- </select>
- <sql id="queryTime" databaseId="oracle">
- to_date(#{dateTime},'yyyy-MM-dd HH24:mi:ss')
- </sql>
- <sql id="queryTime" databaseId="mysql">
- #{dateTime}
- </sql>
- <sql id="queryTime" databaseId="sqlServer">
- #{dateTime}
- </sql>
- <!-- 已过期 -->
- <select id="getByCategoryId" resultMap="resultMap">
- select
- <include refid="basic_data_list" />
- from
- (((basic JOIN cms_article ON (BASIC_ID = ARTICLE_BASICID))
- JOIN basic_column ON (BASIC_CATEGORYID = COLUMN_CATEGORY_ID))
- JOIN category ON (COLUMN_CATEGORY_ID = CATEGORY_ID))
- where basic_categoryId=#{categoryId} order by basic_id desc
- </select>
- <!-- 根据basicID删除开始 -->
- <delete id="delete">
- delete from cms_article
- <where>
- ARTICLE_BASICID in
- <foreach collection="ids" item="item" index="index" open="("
- separator="," close=")">#{item}</foreach>
- </where>
- </delete>
- </mapper>
|