You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.8 KiB
55 lines
2.8 KiB
<?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.hyp.system.mapper.RewApplyInfoListMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.hyp.system.domain.RewApplyInfoList">
|
|
<id property="applyId" column="apply_id" jdbcType="VARCHAR"/>
|
|
<result property="applyName" column="apply_name" jdbcType="VARCHAR"/>
|
|
<result property="applyType" column="apply_type" jdbcType="VARCHAR"/>
|
|
<result property="isReward" column="is_reward" jdbcType="INTEGER"/>
|
|
<result property="applyStatus" column="apply_status" jdbcType="INTEGER"/>
|
|
<result property="appTime" column="app_time" jdbcType="TIMESTAMP"/>
|
|
<result property="applyMsg" column="apply_msg" jdbcType="VARCHAR"/>
|
|
<result property="authTime" column="auth_time" jdbcType="TIMESTAMP"/>
|
|
<result property="createId" column="create_id" jdbcType="INTEGER"/>
|
|
<result property="createBy" column="create_by" jdbcType="VARCHAR"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
apply_id,apply_name,apply_type,
|
|
is_reward,apply_status,app_time,
|
|
apply_msg,auth_time,create_id,
|
|
create_by,create_time,update_by,
|
|
update_time,remark
|
|
</sql>
|
|
<select id="selectApplyInfoList" parameterType="com.hyp.system.domain.dto.ApplyInfoListDTO" resultType="com.hyp.system.domain.vo.ApplyInfoListVO">
|
|
select <include refid="Base_Column_List"/>
|
|
from rew_apply_info_list t
|
|
<trim prefix="where" prefixOverrides="and|or">
|
|
<if test="applyName != null and applyName != ''">
|
|
and t.apply_name like concat('%',#{applyName},'%')
|
|
</if>
|
|
<if test="applyType != null and applyType != ''">
|
|
and t.apply_type = #{applyType}
|
|
</if>
|
|
<if test="createId != null">
|
|
and t.create_id = #{createId}
|
|
</if>
|
|
<if test="createBy != null and createBy != ''">
|
|
and t.create_by like concat('%',#{createBy},'%')
|
|
</if>
|
|
<if test="applyStatus != null and applyStatus != ''">
|
|
and apply_status in
|
|
<foreach item="item" index="index" collection="applyStatus.split(',')" open="(" separator="," close=")">'${item}'</foreach>
|
|
</if>
|
|
</trim>
|
|
order by t.update_time desc
|
|
</select>
|
|
</mapper>
|