修复自定义字段表达式取值问题
parent
e91369c82a
commit
1720952d23
@ -0,0 +1,12 @@
|
||||
package cn.estsh.i3plus.pojo.aps.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface HolderAnnotation {
|
||||
String[] notProperty();
|
||||
}
|
@ -1,11 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.aps.holders;
|
||||
|
||||
import cn.estsh.i3plus.pojo.aps.annotation.HolderAnnotation;
|
||||
|
||||
@HolderAnnotation(notProperty = {"WorkInput", "WorkOutput"})
|
||||
public enum EWorkRelation {
|
||||
WorkInput,
|
||||
WorkOutput,
|
||||
PrevWork,
|
||||
PostWork,
|
||||
Material,
|
||||
PrevOrder,
|
||||
PostOrder,
|
||||
Material
|
||||
PrevWork,
|
||||
PostWork,
|
||||
WorkInput,
|
||||
WorkOutput
|
||||
}
|
||||
|
Loading…
Reference in New Issue