rk
19 小时以前 2acc40db4dd14c3d27ea1645f2b5833969e5c1cb
1
2
3
4
5
6
7
8
9
10
package com.doumee.core.annotation;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
@Target({ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface LoginDriverRequired {}