调试bsp方法管理,执行器管理,日志管理接口
parent
a0079ae73f
commit
db2941fd31
@ -0,0 +1,33 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/1/15 16:06
|
||||
* @Modify:
|
||||
**/
|
||||
@ApiModel(value = "应用管理")
|
||||
@Data
|
||||
public class AppGroupVo {
|
||||
|
||||
@ApiModelProperty("所属应用类型")
|
||||
private Integer softType;
|
||||
|
||||
@ApiModelProperty("服务地址")
|
||||
private String appAddress;
|
||||
|
||||
@ApiModelProperty("应用状态")
|
||||
private Integer isValid;
|
||||
|
||||
@ApiModelProperty("注册开始时间")
|
||||
private String startTime;
|
||||
|
||||
@ApiModelProperty("注册结束时间")
|
||||
private String endTime;
|
||||
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/1/14 9:48
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel(value = "Dashboard调用成功率")
|
||||
public class DashboardSuccessRate {
|
||||
|
||||
@ApiModelProperty(value = "周环比")
|
||||
private String weeksFrom;
|
||||
|
||||
@ApiModelProperty(value = "日环比")
|
||||
private String daysFrom;
|
||||
|
||||
@ApiModelProperty(value = "日调用成功率")
|
||||
private String successRate;
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/1/15 17:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel("批量修改执行器组开启、禁用")
|
||||
public class GroupValidVo {
|
||||
|
||||
@ApiModelProperty("执行器组的id列表")
|
||||
private List<Long> idList;
|
||||
|
||||
@ApiModelProperty("执行器组的状态")
|
||||
private Integer isValid;
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/1/15 17:30
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel("实例管理")
|
||||
public class InstanceVo {
|
||||
|
||||
@ApiModelProperty("所属应用类型")
|
||||
private Integer softType;
|
||||
|
||||
@ApiModelProperty("注册时间开始")
|
||||
private String startTime;
|
||||
|
||||
@ApiModelProperty("注册时间结束")
|
||||
private String endTime;
|
||||
|
||||
@ApiModelProperty("心跳状态")
|
||||
private Integer heartBeat;
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/1/14 14:45
|
||||
* @Modify:
|
||||
**/
|
||||
@ApiModel(value = "查询方法组")
|
||||
@Data
|
||||
public class MethodGroupVo {
|
||||
@ApiParam(value = "方法组名称")
|
||||
private String groupName;
|
||||
@ApiParam(value = "是否启用")
|
||||
private Integer valid;
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/1/15 13:36
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel(value = "历史日志查询")
|
||||
public class MethodLogVo {
|
||||
|
||||
@ApiModelProperty(value = "方法名称")
|
||||
private String methodName;
|
||||
|
||||
@ApiModelProperty(value = "所属应用")
|
||||
private String appName;
|
||||
|
||||
// @ApiModelProperty(value = "方法状态")
|
||||
// private Integer isValid;
|
||||
|
||||
@ApiModelProperty(value = "调用方法开始时间")
|
||||
private String startTime;
|
||||
|
||||
@ApiModelProperty(value = "调用方法结束时间")
|
||||
private String endTime;
|
||||
}
|
Loading…
Reference in New Issue