From 36754ba47da7a3277d5be183a523c912a1dc4cef Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期四, 31 三月 2022 15:07:08 +0800 Subject: [PATCH] service服务bug修复 --- src/main/resources/code/service/app/src/main/resources/mapper/WXUserInfoMapper.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/resources/code/service/app/src/main/resources/mapper/WXUserInfoMapper.xml b/src/main/resources/code/service/app/src/main/resources/mapper/WXUserInfoMapper.xml index 99a71a7..18627a7 100644 --- a/src/main/resources/code/service/app/src/main/resources/mapper/WXUserInfoMapper.xml +++ b/src/main/resources/code/service/app/src/main/resources/mapper/WXUserInfoMapper.xml @@ -1,9 +1,9 @@ <?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.yeshi.location.app.mapper.user.WXUserInfoMapper"> +<mapper namespace="com.ks.app.mapper.user.WXUserInfoMapper"> <resultMap id="BaseResultMap" - type="com.yeshi.location.app.entity.user.WXUserInfo"> + type="com.ks.app.entity.user.WXUserInfo"> <id column="id" property="id" jdbcType="BIGINT"/> <result column="system" property="system" jdbcType="VARCHAR"/> <result column="nick_name" property="nickName" jdbcType="VARCHAR"/> @@ -44,7 +44,7 @@ lt_user_wx where id = #{id,jdbcType=BIGINT} </delete> <insert id="insert" - parameterType="com.yeshi.location.app.entity.user.WXUserInfo" + parameterType="com.ks.app.entity.user.WXUserInfo" useGeneratedKeys="true" keyProperty="id"> insert into lt_user_wx @@ -80,7 +80,7 @@ </insert> <insert id="insertSelective" - parameterType="com.yeshi.location.app.entity.user.WXUserInfo" + parameterType="com.ks.app.entity.user.WXUserInfo" useGeneratedKeys="true" keyProperty="id"> insert into lt_user_wx <trim prefix="(" suffix=")" suffixOverrides=","> @@ -114,7 +114,7 @@ </trim> </insert> <update id="updateByPrimaryKey" - parameterType="com.yeshi.location.app.entity.user.WXUserInfo"> + parameterType="com.ks.app.entity.user.WXUserInfo"> update lt_user_wx <set> <if test="id != null">id = #{id,jdbcType=BIGINT},</if> @@ -133,7 +133,7 @@ where id = #{id,jdbcType=BIGINT} </update> <update id="updateByPrimaryKeySelective" - parameterType="com.yeshi.location.app.entity.user.WXUserInfo"> + parameterType="com.ks.app.entity.user.WXUserInfo"> update lt_user_wx <set> <if test="system != null">system = #{system,jdbcType=VARCHAR},</if> -- Gitblit v1.8.0