Merge remote-tracking branch 'origin/dev' into dev
commit
92c1e846b6
@ -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
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,30 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.lac.bean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : yunhao
|
||||||
|
* @CreateDate : 2019-11-19 16:14
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@ApiModel("指令操作")
|
||||||
|
public class LacCommandOperate {
|
||||||
|
|
||||||
|
@ApiParam(value ="指令集记录id" , example = "-1")
|
||||||
|
private Long commandStackRecordId;
|
||||||
|
|
||||||
|
@ApiParam(value ="步骤任务id" , example = "-1")
|
||||||
|
private Long commandStackStepTaskIdId;
|
||||||
|
|
||||||
|
@ApiParam(value ="操作类型" , example = "-1")
|
||||||
|
private Integer operateType;
|
||||||
|
|
||||||
|
@ApiParam(value ="操作" , example = "-1")
|
||||||
|
private Integer operate;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue