- package cn.com.goldenwater.dcproj.annotation;
- import java.lang.annotation.*;
- /**
- * <p>标记该字段无需导出
- *
- * @author liyz
- * @date 2019/12/20 10:58
- **/
- @Target({ElementType.FIELD})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface NotExport {
- }
|