| 12345678910111213141516171819202122232425262728293031 |
- package cn.com.goldenwater.dcproj.target;
- import java.lang.annotation.*;
- /**
- * Created by jinshui on 2020/4/7.
- * 填报保存注解
- */
- @Target({ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface FillIn {
- /**
- * 表名
- * @return
- */
- String tableName() default "";
- /**
- * 是否移除问题列表
- * @return
- */
- boolean removePblm() default true;
- /**
- * 类型
- * @return
- */
- String type() default "";
- }
|