Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
553eab4a29
@ -0,0 +1,23 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.bsp.server.bean.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 查询方法组使用的model
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2021/7/30 9:36
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@ApiModel("查询方法组")
|
||||||
|
@Data
|
||||||
|
public class MethodGroupListModel {
|
||||||
|
|
||||||
|
@ApiModelProperty("方法组名字")
|
||||||
|
private String methodGroupName;
|
||||||
|
|
||||||
|
@ApiModelProperty("方法组分类")
|
||||||
|
private String classify;
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.bsp.server.bean.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : Castle
|
||||||
|
* @CreateDate : 2021/7/29 10:14
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@ApiModel("分页查询方法列表")
|
||||||
|
public class MethodListModel {
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "执行器名")
|
||||||
|
private String appName;
|
||||||
|
@ApiModelProperty(name = "方法的版本号")
|
||||||
|
private String version;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue