mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-07 01:18:27 +08:00
Merge branch 'main' of https://gitee.com/dromara/MaxKey
This commit is contained in:
commit
c0df0c9d76
@ -36,9 +36,9 @@ public class JdbcSocialsAssociateService implements SocialsAssociateService{
|
|||||||
private static final String DEFAULT_DEFAULT_INSERT_STATEMENT = "insert into mxk_socials_associate(id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , instid)values( ? , ? , ? , ? , ?, ? , ? , ?, ?)";
|
private static final String DEFAULT_DEFAULT_INSERT_STATEMENT = "insert into mxk_socials_associate(id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , instid)values( ? , ? , ? , ? , ?, ? , ? , ?, ?)";
|
||||||
|
|
||||||
private static final String DEFAULT_DEFAULT_INSERT_STATEMENT_ORACLE = "insert into mxk_socials_associate(id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , instid)values( ? , ? , ? , ? , ?, ? , ? , ?, ?)";
|
private static final String DEFAULT_DEFAULT_INSERT_STATEMENT_ORACLE = "insert into mxk_socials_associate(id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , instid)values( ? , ? , ? , ? , ?, ? , ? , ?, ?)";
|
||||||
|
|
||||||
private static final String DEFAULT_DEFAULT_SIGNON_SELECT_STATEMENT = "select id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , createddate , updateddate , instid from mxk_socials_associate where provider = ? and socialuserid = ?";
|
private static final String DEFAULT_DEFAULT_SIGNON_SELECT_STATEMENT = "select id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , createddate , updateddate , instid from mxk_socials_associate where provider = ? and socialuserid = ? and instId = ?";
|
||||||
|
|
||||||
private static final String DEFAULT_DEFAULT_BIND_SELECT_STATEMENT = "select id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , createddate , updateddate , instid from mxk_socials_associate where userid = ?" ;
|
private static final String DEFAULT_DEFAULT_BIND_SELECT_STATEMENT = "select id, userid , username , provider , socialuserid , accesstoken , socialuserinfo , exattribute , createddate , updateddate , instid from mxk_socials_associate where userid = ?" ;
|
||||||
|
|
||||||
private static final String DEFAULT_DEFAULT_DELETE_STATEMENT = "delete from mxk_socials_associate where userid = ? and provider = ?";
|
private static final String DEFAULT_DEFAULT_DELETE_STATEMENT = "delete from mxk_socials_associate where userid = ? and provider = ?";
|
||||||
@ -90,10 +90,11 @@ public class JdbcSocialsAssociateService implements SocialsAssociateService{
|
|||||||
@Override
|
@Override
|
||||||
public SocialsAssociate get(SocialsAssociate socialsAssociate) {
|
public SocialsAssociate get(SocialsAssociate socialsAssociate) {
|
||||||
List<SocialsAssociate> listsocialsAssociate=jdbcTemplate.query(
|
List<SocialsAssociate> listsocialsAssociate=jdbcTemplate.query(
|
||||||
DEFAULT_DEFAULT_SIGNON_SELECT_STATEMENT,
|
DEFAULT_DEFAULT_SIGNON_SELECT_STATEMENT,
|
||||||
new SocialsAssociateRowMapper(),
|
new SocialsAssociateRowMapper(),
|
||||||
socialsAssociate.getProvider(),
|
socialsAssociate.getProvider(),
|
||||||
socialsAssociate.getSocialUserId());
|
socialsAssociate.getSocialUserId(),
|
||||||
|
socialsAssociate.getInstId());
|
||||||
_logger.debug("list socialsAssociate "+listsocialsAssociate);
|
_logger.debug("list socialsAssociate "+listsocialsAssociate);
|
||||||
return (listsocialsAssociate.size()>0)?listsocialsAssociate.get(0):null;
|
return (listsocialsAssociate.size()>0)?listsocialsAssociate.get(0):null;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user