Merge remote-tracking branch 'origin/dev' into dev
commit
e0a5b36061
@ -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;
|
package cn.estsh.i3plus.pojo.aps.holders;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.aps.annotation.HolderAnnotation;
|
||||||
|
|
||||||
|
@HolderAnnotation(notProperty = {"WorkInput", "WorkOutput"})
|
||||||
public enum EWorkRelation {
|
public enum EWorkRelation {
|
||||||
WorkInput,
|
Material,
|
||||||
WorkOutput,
|
|
||||||
PrevWork,
|
|
||||||
PostWork,
|
|
||||||
PrevOrder,
|
PrevOrder,
|
||||||
PostOrder,
|
PostOrder,
|
||||||
Material
|
PrevWork,
|
||||||
|
PostWork,
|
||||||
|
WorkInput,
|
||||||
|
WorkOutput
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue