<?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="com.xcong.farmer.cms.modules.system.mapper.ArticleMapper">
|
|
<select id="selectAdminArticleInPage" resultType="com.xcong.farmer.cms.modules.system.vo.AdminArticleVo">
|
SELECT
|
a.*,
|
b.column_name columnName
|
FROM
|
t_article a
|
left join t_column b on a.column_id = b.id
|
<where>
|
and a.del_status = 1
|
<if test="record != null" >
|
<if test="record.columnId != null">
|
and a.column_id = #{record.columnId}
|
</if>
|
<if test="record.companyId != null">
|
and a.company_id = #{record.companyId}
|
</if>
|
<if test="record.title!=null">
|
and a.title like concat ('%',#{record.title},'%')
|
</if>
|
</if>
|
</where>
|
order by a.create_time desc
|
</select>
|
|
<select id="selectAdminArticleByid" resultType="com.xcong.farmer.cms.modules.system.vo.AdminSeeArticleInfoVo">
|
SELECT
|
a.*
|
FROM
|
t_article a where id = #{id}
|
</select>
|
|
</mapper>
|