1234567891011121314151617 |
- package com.rongwei.bscommon.system.fegin;
- import com.rongwei.rwadmincommon.system.vo.JwtAuthenticationRequest;
- import org.springframework.stereotype.Component;
- import java.util.HashMap;
- import java.util.Map;
- @Component
- public class QhseLoginAuthImpl implements QhseLoginAuth {
- @Override
- public Map<String,Object> getTokenInfo(JwtAuthenticationRequest authenticationRequest) {
- Map<String,Object> map = new HashMap<>();
- map.put("msg","ServerAbnormal");
- return map;
- }
- }
|