package com.thhy.general.annotations; import java.lang.annotation.*; @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD,ElementType.PARAMETER,ElementType.METHOD}) public @interface Idkey { String value() default ""; }