|
- <?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.SysNoticeMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.SysNotice">
- <id column="id" jdbcType="BIGINT" property="id"/>
- <result column="type" jdbcType="INTEGER" property="type"/>
- <result column="content" jdbcType="VARCHAR" property="content"/>
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
- <result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
- <result column="status" jdbcType="INTEGER" property="status"/>
- </resultMap>
-
- <sql id="allColumns">
- id,type,content,create_time,update_time,status
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1=1
-
- <if test=" null != id ">
- and `id` = #{id}
- </if>
-
- <if test=" null != type ">
- and `type` = #{type}
- </if>
-
- <if test=" null != status ">
- and `status` = #{status}
- </if>
- <if test=" null != sortColumns">order by ${sortColumns}</if>
- </sql>
-
- <select id="findList" parameterType="com.iformall.domain.po.SysNotice" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from sys_notice
- <include refid="dynamicWhereConditions"/>
- </select>
-
- </mapper>
|