QhseLoginAuthImpl.java 507 B

1234567891011121314151617
  1. package com.rongwei.bscommon.system.fegin;
  2. import com.rongwei.rwadmincommon.system.vo.JwtAuthenticationRequest;
  3. import org.springframework.stereotype.Component;
  4. import java.util.HashMap;
  5. import java.util.Map;
  6. @Component
  7. public class QhseLoginAuthImpl implements QhseLoginAuth {
  8. @Override
  9. public Map<String,Object> getTokenInfo(JwtAuthenticationRequest authenticationRequest) {
  10. Map<String,Object> map = new HashMap<>();
  11. map.put("msg","ServerAbnormal");
  12. return map;
  13. }
  14. }