|
- <?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.iformall.mapper.YqzjNewsMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.yqzj.YqzjNews">
- <id column="id" jdbcType="BIGINT" property="id"/>
- <result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
- <result column="parent_tenant_id" jdbcType="VARCHAR" property="parentTenantId" />
- <result column="type" jdbcType="INTEGER" property="type"/>
- <result column="sub_type" jdbcType="INTEGER" property="subType"/>
- <result column="tag" jdbcType="VARCHAR" property="tag"/>
- <result column="title" jdbcType="VARCHAR" property="title"/>
- <result column="sub_title" jdbcType="VARCHAR" property="subTitle"/>
- <result column="detail" jdbcType="VARCHAR" property="detail"/>
- <result column="image" jdbcType="VARCHAR" property="image"/>
- <result column="video" jdbcType="VARCHAR" property="video"/>
- <result column="send_date" jdbcType="TIMESTAMP" property="sendDate"/>
- <result column="status" jdbcType="INTEGER" property="status"/>
- <result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
- <result column="update_date" jdbcType="TIMESTAMP" property="updateDate"/>
- </resultMap>
-
-
- <sql id="allColumns">
- `id`,`tenant_id`,`parent_tenant_id`,`type`,`sub_type`,`tag`,`title`,`sub_title`,`detail`,`image`,`video`,`send_date`,`status`,`create_date`,`update_date`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
-
- <if test=" null != id ">
- and `id` = #{id}
- </if>
-
- <if test=" null != tenantId and '' != tenantId">
- and `tenant_id` = #{tenantId}
- </if>
- <if test=" null != parentTenantId and '' != parentTenantId">
- and `parent_tenant_id` = #{parentTenantId}
- </if>
-
- <if test=" null != type ">
- and `type` = #{type}
- </if>
-
- <if test=" null != subType ">
- and `sub_type` = #{subType}
- </if>
-
- <if test=" null != tag ">
- and `tag` = #{tag}
- </if>
-
- <if test=" null != title ">
- and `title` like concat('%', #{title},'%')
- </if>
-
- <if test=" null != sendDateBegin ">
- and `send_date` >= #{sendDateBegin}
- </if>
-
- <if test=" null != sendDateEnd ">
- and `send_date` <= #{sendDateEnd}
- </if>
-
- <if test=" videHas == 1">
- and `video` is not null and `video` != ''
- </if>
-
- <if test=" null != ids ">
- and id in
- <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
- #{idItem}
- </foreach>
- </if>
-
- <if test=" null != sortColumns">order by ${sortColumns}</if>
- </sql>
-
- <select id="findList" parameterType="com.iformall.domain.po.yqzj.YqzjNews" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from yqzj_news
- <include refid="dynamicWhereConditions"/>
- </select>
-
- </mapper>
|