Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
77b921ef38
@ -1,12 +0,0 @@
|
||||
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,24 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.aps.enums;
|
||||
|
||||
/**
|
||||
* @Description :资源效率影响的计划类型
|
||||
* @Reference :
|
||||
* @Author : jason.niu
|
||||
* @CreateDate : 2019-10-17
|
||||
* @Modify:
|
||||
**/
|
||||
public enum EFFICIENCY_EFFECT {
|
||||
PREV_SET(1), // 前设置
|
||||
PRODUCE(2), // 生产
|
||||
POST_SET(4); // 后设置
|
||||
|
||||
private int _value;
|
||||
|
||||
EFFICIENCY_EFFECT(int value){
|
||||
_value = value;
|
||||
}
|
||||
|
||||
public int value() {
|
||||
return this._value;
|
||||
}
|
||||
}
|
@ -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