修复缺失的service文件
This commit is contained in:
@ -20,6 +20,7 @@ public class R extends HashMap<String, Object> {
|
||||
|
||||
public R() {
|
||||
put("code", 0);
|
||||
put("retcode", 1);
|
||||
put("success", true);
|
||||
put("msg", "");
|
||||
}
|
||||
|
||||
@ -18,6 +18,7 @@ import com.xjrsoft.common.core.exception.MyException;
|
||||
import com.xjrsoft.common.satoken.config.MagicApiConfig;
|
||||
import com.xjrsoft.common.satoken.interceptor.MagicApiWebLoginInterceptor;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||||
@ -29,6 +30,7 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||||
*/
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
@RequiredArgsConstructor
|
||||
@Slf4j
|
||||
public class SaTokenAutoConfiguration implements WebMvcConfigurer {
|
||||
|
||||
private final MagicApiConfig magicApiConfig;
|
||||
|
||||
Reference in New Issue
Block a user