|
|
@ -102,13 +102,12 @@ public class AppLetAuthorizationServiceImpl implements AppLetAuthorizationServic |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查看小程序绑定的开放平台账号 |
|
|
|
* @param tokenDto |
|
|
|
* @param formDTO |
|
|
|
* @author zxc |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public String getOpenAppId(TokenDto tokenDto, OpenAppIdFormDTO formDTO) { |
|
|
|
String customerId = componentVerifyTicketServiceImpl.getLoginUserCustomerId(tokenDto); |
|
|
|
public String getOpenAppId(OpenAppIdFormDTO formDTO) { |
|
|
|
String customerId = formDTO.getCustomerId(); |
|
|
|
String clientType = formDTO.getClientType(); |
|
|
|
String authAppId = customerMpDao.getAppId(customerId, clientType); |
|
|
|
Map<String, Object> authInfo = redisThird.getAuthInfo(customerId, clientType); |
|
|
|