SocialSignOn

This commit is contained in:
MaxKey
2022-04-25 08:52:29 +08:00
parent ba518828f8
commit d3b2f4da64
26 changed files with 156 additions and 94 deletions

View File

@@ -11,6 +11,7 @@
a.id,
a.userid,
a.username,
a.socialuserid,
a.createdDate,
a.updatedDate
from
@@ -18,12 +19,12 @@
left join
mxk_socials_associate a
on a.provider = p.provider and a.userid = #{id}
on a.provider = p.provider
and a.instid = p.instid
and a.instid = #{instId}
and a.userid = #{id}
where
a.instid = p.instid
and a.instid = #{instId}
and p.status =1
p.status =1
order by p.sortindex
</select>