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 getTokenInfo(JwtAuthenticationRequest authenticationRequest) { Map map = new HashMap<>(); map.put("msg","ServerAbnormal"); return map; } }