lac微服务模式优化
parent
c60213ad3e
commit
12ba5d2ff3
@ -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