fix: remove stray characters from SysUserMapper.xml

Stray 't' characters before XML tags in resultMap/insert/update
elements were causing MyBatis XML parsing failure at runtime.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
renjianbo
2026-05-17 00:23:48 +08:00
parent cccc88e2e2
commit 2f460dbd4f

View File

@@ -40,7 +40,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="provinceCode" column="province_code" />
<result property="country" column="country" />
<result property="countryCode" column="country_code" />
t <result property="userLevel" column="user_level" />
<result property="userLevel" column="user_level" />
<association property="dept" column="dept_id" javaType="SysDept" resultMap="deptResult" />
<collection property="roles" javaType="java.util.List" resultMap="RoleResult" />
@@ -194,7 +194,7 @@ t <result property="userLevel" column="user_level" />
<if test="province != null and province != ''">province ,</if>
<if test="provinceCode != null and provinceCode != ''">province_code,</if>
<if test="country != null and country != ''">country,</if>
t <if test="userLevel != null and userLevel != ''">user_level,</if>
<if test="userLevel != null and userLevel != ''">user_level,</if>
<if test="countryCode != null and countryCode != ''">country_code,</if>
create_time
)values(
@@ -226,7 +226,7 @@ t <if test="userLevel != null and userLevel != ''">user_level,</if>
<if test="province != null and province != ''">#{province},</if>
<if test="provinceCode != null and provinceCode != ''">#{provinceCode},</if>
<if test="country != null and country != ''">#{country},</if>
t <if test="userLevel != null and userLevel != ''">#{userLevel},</if>
<if test="userLevel != null and userLevel != ''">#{userLevel},</if>
<if test="countryCode != null and countryCode != ''">#{countryCode},</if>
sysdate()
@@ -265,7 +265,7 @@ t <if test="userLevel != null and userLevel != ''">#{userLevel},</if>
<if test="province != null and province != ''">province =#{province},</if>
<if test="provinceCode != null and provinceCode != ''">province_code =#{provinceCode},</if>
<if test="country != null and country != ''">country =#{country},</if>
t <if test="userLevel != null and userLevel != ''">user_level =#{userLevel},</if>
<if test="userLevel != null and userLevel != ''">user_level =#{userLevel},</if>
<if test="countryCode != null and countryCode != ''">country_code =#{countryCode},</if>