All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fun.bigtable.kraken.annotation.EncryptController Maven / Gradle / Ivy

There is a newer version: 2.0.9.1
Show newest version
package fun.bigtable.kraken.annotation;

import org.springframework.web.bind.annotation.Mapping;

import java.lang.annotation.*;

@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Mapping
public @interface EncryptController {
    /**
     * 是否解密请求参数
     */
    boolean req() default true;

    /**
     * 是否加密返回值
     */
    boolean res() default true;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy