|
|
|
@ -2,6 +2,7 @@ package cn.estsh.i3plus.pojo.bsp.server.bean.model;
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@ -24,6 +25,8 @@ public class RequestModel {
|
|
|
|
|
private String methodHandlerKey;
|
|
|
|
|
@ApiModelProperty("方法的入参")
|
|
|
|
|
private Map<String, Object> jsonParamMap;
|
|
|
|
|
@ApiModelProperty(value = "调用方法参数列表", allowEmptyValue = true)
|
|
|
|
|
private Object[] jsonParamArray;
|
|
|
|
|
@ApiModelProperty("日志id")
|
|
|
|
|
private Long logId;
|
|
|
|
|
@ApiModelProperty("方法类型-脚本-方法")
|
|
|
|
@ -32,4 +35,8 @@ public class RequestModel {
|
|
|
|
|
private Integer scriptType;
|
|
|
|
|
@ApiModelProperty("脚本内容")
|
|
|
|
|
private String scriptContent;
|
|
|
|
|
@ApiModelProperty("日志时间")
|
|
|
|
|
private String logDateTimeParam;
|
|
|
|
|
@ApiModelProperty("调用的超时时间")
|
|
|
|
|
private Integer executorTimeout;
|
|
|
|
|
}
|
|
|
|
|