update notnull default to false
parent
f76def231d
commit
c78de7bcbb
|
@ -20,7 +20,7 @@ public @interface ExtractBy {
|
||||||
|
|
||||||
Type type() default Type.XPath;
|
Type type() default Type.XPath;
|
||||||
|
|
||||||
boolean notNull() default true;
|
boolean notNull() default false;
|
||||||
|
|
||||||
boolean multi() default false;
|
boolean multi() default false;
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ public @interface ExtractByRaw {
|
||||||
|
|
||||||
Type type() default Type.XPath;
|
Type type() default Type.XPath;
|
||||||
|
|
||||||
boolean notNull() default true;
|
boolean notNull() default false;
|
||||||
|
|
||||||
boolean multi() default false;
|
boolean multi() default false;
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ public @interface ExtractByUrl{
|
||||||
|
|
||||||
String value() default "";
|
String value() default "";
|
||||||
|
|
||||||
boolean notNull() default true;
|
boolean notNull() default false;
|
||||||
|
|
||||||
boolean multi() default false;
|
boolean multi() default false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue