diff --git a/bonus-modules/bonus-system/src/main/resources/mapper/system/SysUserMapper.xml b/bonus-modules/bonus-system/src/main/resources/mapper/system/SysUserMapper.xml
index e311425..1b25866 100644
--- a/bonus-modules/bonus-system/src/main/resources/mapper/system/SysUserMapper.xml
+++ b/bonus-modules/bonus-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -293,6 +293,12 @@
approval_status,
is_permanent,
is_built_in,
+ cust_id,
+ cust_num,
+ area_id,
+ psn_type,
+ psn_type_name,
+ is_customer,
create_time
)values(
#{userId},
@@ -311,6 +317,12 @@
#{approvalStatus},
#{isPermanent},
#{isBuiltIn},
+ #{custId},
+ #{custNum},
+ #{areaId},
+ #{psnType},
+ #{psnTypeName},
+ #{isCustomer},
sysdate()
)
@@ -334,6 +346,12 @@
login_type = #{loginType},
is_permanent = #{isPermanent},
is_built_in = #{isBuiltIn},
+ cust_id = #{custId},
+ cust_num = #{custNum},
+ area_id = #{areaId},
+ psn_type = #{psnType},
+ psn_type_name = #{psnTypeName},
+ is_customer = #{isCustomer},
update_time = sysdate()
where user_id = #{userId}