Annotation定义 ```java @Retention(RetentionPolicy.RUNTIME) public @interface JSONCompiled { boolean debug() default false; } ``` * 配置 ```java @JSONCompiled(debug=true) class Bean { public int id; } ``` * 效果 将codegen的代码用java.txt的方式输出,方便看生产代码的逻辑