账号绑定表,增减两个字段 时间

This commit is contained in:
Jack 2025-08-07 13:59:55 +08:00
parent 867969266e
commit d2882f39b0
2 changed files with 6 additions and 3 deletions

View File

@ -434,6 +434,10 @@ public class AccountUserBindConnectServiceImpl extends BaseServiceImpl<AccountUs
return null;
}
// if (bindType == BindCode.MOBILE && PhoneNumberUtils.isValidNumber(bindId)) {
// bindId = String.format("%s", bindId,bindType,)
// }
// 2. 查询是否已存在绑定关系
QueryWrapper<AccountUserBindConnect> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("bind_id", bindId)

View File

@ -1,10 +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.suisung.mall.account.mapper.AccountUserBindConnectMapper">
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
bind_id, bind_type, user_id, bind_time, bind_nickname, bind_icon, bind_gender, bind_vip, bind_level, bind_client_id, bind_country, bind_province, bind_city, bind_county, bind_code, bind_openid, bind_unionid, bind_access_token, bind_expires_in, bind_refresh_token, bind_token_ttl, bind_active
bind_id
, bind_type, user_id, bind_time, bind_nickname, bind_icon, bind_gender, bind_vip, bind_level, bind_client_id, bind_country, bind_province, bind_city, bind_county, bind_code, bind_openid, bind_unionid, bind_access_token, bind_expires_in, bind_refresh_token, bind_token_ttl, bind_active, created_at, updated_at
</sql>
</mapper>