You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
package com.dxhy.auth.client;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
import com.dxhy.auth.client.configuration.AutoConfiguration;
|
|
|
|
/**
|
|
* @author jiaohongyang
|
|
* @date 2019年3月26日 下午5:52:25
|
|
*
|
|
*/
|
|
@Target(ElementType.TYPE)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Import(AutoConfiguration.class)
|
|
@Documented
|
|
@Inherited
|
|
public @interface EnableDxhyAuthClient {}
|
|
|