|
- <?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.WxGameUserCountMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxGameUserCount">
- <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="game_id" jdbcType="BIGINT" property="gameId" />
- <result column="user_id" jdbcType="BIGINT" property="userId" />
- <result column="user_phone" jdbcType="VARCHAR" property="userPhone" />
- <result column="user_name" jdbcType="VARCHAR" property="userName" />
- <result column="user_nick_name" jdbcType="VARCHAR" property="userNickName" />
- <result column="add_count" jdbcType="INTEGER" property="addCount" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
- </resultMap>
-
- <sql id="allColumns">
- `id`,`tenant_id`,`parent_tenant_id`,`game_id`,`user_id`,`user_phone`,`user_name`,`user_nick_name`,`add_count`,`create_time`,`update_time`
- </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 != gameId ">
- and `game_id` = #{gameId}
- </if>
-
- <if test=" null != userId ">
- and `user_id` = #{userId}
- </if>
-
- <if test=" null != userPhone and '' != userPhone">
- and `user_phone` like concat('%', #{userPhone},'%')
- </if>
-
- <if test=" null != userName and '' != userName">
- and `user_name` like concat('%', #{userName},'%')
- </if>
-
- <if test=" null != userNickName and '' != userNickName">
- and `user_nick_name` like concat('%', #{userNickName},'%')
- </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.WxGameUserCount" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_game_user_count
- <include refid="dynamicWhereConditions" />
- </select>
-
- <select id="sumUserCount" parameterType="com.iformall.domain.po.WxGameUserCount" resultType="Integer">
- select sum(add_count)
- from wx_game_user_count where `tenant_id` = #{tenantId} and `game_id` = #{gameId} and `user_id` = #{userId}
- </select>
- </mapper>
|