queryModel.xml 1.76 KB
<?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.mapping.queryModel" >
  <!--banner查询 -->
  <select id="queryBanner" resultType="java.util.HashMap" parameterType="java.util.HashMap">
      SELECT
      t.id,
      t.title,
      t.pic_url AS picUrl,
      t.is_up AS isUp,
      t.weight,
      t.jump_type as jumpType
      FROM
      t_base_banner t
      WHERE
      t.is_delete =0
      <if test="title != null">
       AND t.title LIKE #{title}
      </if>
      ORDER BY t.create_dt DESC, t.weight DESC
  </select>


    <select id="queryUser" resultType="java.util.HashMap" parameterType="java.util.HashMap">
        SELECT
        t.id,
        t.full_name as fullName,
        t.phone,
        t.duty,
        t.integral,
        t.user_category as userCategory,
        t.head_photo as headPhoto,
        date_format(t.create_dt,'%Y-%m-%d %H:%i:%S') createDt
        FROM
        t_kzy_user t
        WHERE
        1 = 1
        <if test="fullName != null">
            AND t.full_name LIKE #{fullName}
        </if>
        <if test="duty != null">
            AND t.duty LIKE #{duty}
        </if>
        <if test="phone != null">
            AND t.phone = #{phone}
        </if>
        ORDER BY t.create_dt DESC
    </select>

    <select id="queryUserIntegral" resultType="java.util.HashMap" parameterType="java.util.HashMap">
        SELECT
        t.id,
        t.integral,
        t.source_type as sourceType,
        t.remark,
        date_format(t.create_dt,'%Y-%m-%d %H:%i:%S') createDt
        FROM
        t_kzy_user_integral_flowing t
        WHERE
        t.user_id = #{id,jdbcType=BIGINT}
        ORDER BY t.create_dt DESC
    </select>

</mapper>