MinaPermission.java 318 Bytes
Newer Older
苗卫卫 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.boco.nbd.wios.wx.permisson;

import java.lang.annotation.*;

/**
 * @author kevin
 * @create 2020/10/30 18:10
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface MinaPermission {

    boolean require() default true;

    String[] value() default {};
}