You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
199 lines
7.0 KiB
XML
199 lines
7.0 KiB
XML
<?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.ruoyi.system.mapper.TWechatUserMapper" >
|
|
<resultMap id="BaseResultMap" type="com.ruoyi.system.domain.TWechatUser" >
|
|
<id column="id" property="id" jdbcType="BIGINT" />
|
|
<result column="last_login_time" property="lastLoginTime" jdbcType="TIMESTAMP" />
|
|
<result column="last_login_ip" property="lastLoginIp" jdbcType="VARCHAR" />
|
|
<result column="nickname" property="nickname" jdbcType="VARCHAR" />
|
|
<result column="mobile" property="mobile" jdbcType="VARCHAR" />
|
|
<result column="avatar" property="avatar" jdbcType="VARCHAR" />
|
|
<result column="openid" property="openid" jdbcType="VARCHAR" />
|
|
<result column="unionid" property="unionid" jdbcType="VARCHAR" />
|
|
<result column="status" property="status" jdbcType="TINYINT" />
|
|
<result column="add_time" property="addTime" jdbcType="TIMESTAMP" />
|
|
<result column="update_time" property="updateTime" jdbcType="TIMESTAMP" />
|
|
<result column="user_id" property="userId" jdbcType="BIGINT" />
|
|
</resultMap>
|
|
<sql id="Base_Column_List" >
|
|
id, last_login_time, last_login_ip, nickname, mobile, avatar, openid, unionid, status,
|
|
add_time, update_time, user_id
|
|
</sql>
|
|
<select id="selectUserByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" >
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from t_wechat_user
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</select>
|
|
<insert id="insert" parameterType="com.ruoyi.system.domain.TWechatUser" >
|
|
insert into t_wechat_user (id, last_login_time, last_login_ip,
|
|
nickname, mobile, avatar,
|
|
openid, unionid, status,
|
|
add_time, update_time, user_id
|
|
)
|
|
values (#{id,jdbcType=BIGINT}, #{lastLoginTime,jdbcType=TIMESTAMP}, #{lastLoginIp,jdbcType=VARCHAR},
|
|
#{nickname,jdbcType=VARCHAR}, #{mobile,jdbcType=VARCHAR}, #{avatar,jdbcType=VARCHAR},
|
|
#{openid,jdbcType=VARCHAR}, #{unionid,jdbcType=VARCHAR}, #{status,jdbcType=TINYINT},
|
|
#{addTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{userId,jdbcType=BIGINT}
|
|
)
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.ruoyi.system.domain.TWechatUser" >
|
|
insert into t_wechat_user
|
|
<trim prefix="(" suffix=")" suffixOverrides="," >
|
|
<if test="id != null" >
|
|
id,
|
|
</if>
|
|
<if test="lastLoginTime != null" >
|
|
last_login_time,
|
|
</if>
|
|
<if test="lastLoginIp != null" >
|
|
last_login_ip,
|
|
</if>
|
|
<if test="nickname != null" >
|
|
nickname,
|
|
</if>
|
|
<if test="mobile != null" >
|
|
mobile,
|
|
</if>
|
|
<if test="avatar != null" >
|
|
avatar,
|
|
</if>
|
|
<if test="openid != null" >
|
|
openid,
|
|
</if>
|
|
<if test="unionid != null" >
|
|
unionid,
|
|
</if>
|
|
<if test="status != null" >
|
|
status,
|
|
</if>
|
|
<if test="addTime != null" >
|
|
add_time,
|
|
</if>
|
|
<if test="updateTime != null" >
|
|
update_time,
|
|
</if>
|
|
<if test="userId != null" >
|
|
user_id,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
<if test="id != null" >
|
|
#{id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="lastLoginTime != null" >
|
|
#{lastLoginTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="lastLoginIp != null" >
|
|
#{lastLoginIp,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="nickname != null" >
|
|
#{nickname,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="mobile != null" >
|
|
#{mobile,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="avatar != null" >
|
|
#{avatar,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="openid != null" >
|
|
#{openid,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="unionid != null" >
|
|
#{unionid,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="status != null" >
|
|
#{status,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="addTime != null" >
|
|
#{addTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updateTime != null" >
|
|
#{updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="userId != null" >
|
|
#{userId,jdbcType=BIGINT},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.ruoyi.system.domain.TWechatUser" >
|
|
update t_wechat_user
|
|
<set >
|
|
<if test="lastLoginTime != null" >
|
|
last_login_time = #{lastLoginTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="lastLoginIp != null" >
|
|
last_login_ip = #{lastLoginIp,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="nickname != null" >
|
|
nickname = #{nickname,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="mobile != null" >
|
|
mobile = #{mobile,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="avatar != null" >
|
|
avatar = #{avatar,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="openid != null" >
|
|
openid = #{openid,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="unionid != null" >
|
|
unionid = #{unionid,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="status != null" >
|
|
status = #{status,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="addTime != null" >
|
|
add_time = #{addTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updateTime != null" >
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="userId != null" >
|
|
user_id = #{userId,jdbcType=BIGINT},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.ruoyi.system.domain.TWechatUser" >
|
|
update t_wechat_user
|
|
set last_login_time = #{lastLoginTime,jdbcType=TIMESTAMP},
|
|
last_login_ip = #{lastLoginIp,jdbcType=VARCHAR},
|
|
nickname = #{nickname,jdbcType=VARCHAR},
|
|
mobile = #{mobile,jdbcType=VARCHAR},
|
|
avatar = #{avatar,jdbcType=VARCHAR},
|
|
openid = #{openid,jdbcType=VARCHAR},
|
|
unionid = #{unionid,jdbcType=VARCHAR},
|
|
status = #{status,jdbcType=TINYINT},
|
|
add_time = #{addTime,jdbcType=TIMESTAMP},
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
user_id = #{userId,jdbcType=BIGINT}
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
|
|
<select id="selectWechatUserByOpenid" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from t_wechat_user
|
|
where openid = #{openid,jdbcType=VARCHAR}
|
|
</select>
|
|
|
|
<select id="selectWechatUserByUnionid" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from t_wechat_user
|
|
where unionid = #{unionid,jdbcType=VARCHAR}
|
|
</select>
|
|
|
|
<update id="updateWechatUserByOpenId" parameterType="com.ruoyi.system.domain.TWechatUser">
|
|
update t_wechat_user
|
|
set user_id = #{userId,jdbcType=BIGINT}
|
|
where openid = #{openid,jdbcType=VARCHAR}
|
|
</update>
|
|
|
|
<update id="updateWechatUserByUnionId" parameterType="com.ruoyi.system.domain.TWechatUser">
|
|
update t_wechat_user
|
|
set user_id = #{userId,jdbcType=BIGINT}
|
|
where unionid = #{unionid,jdbcType=VARCHAR}
|
|
</update>
|
|
</mapper> |