|
|
|
@ -51,7 +51,7 @@ public class BasPlugin extends BaseBean{
|
|
|
|
|
|
|
|
|
|
@Column(name="PLUGIN_DESC")
|
|
|
|
|
@ApiParam("插件描述")
|
|
|
|
|
private String vendorAddr;
|
|
|
|
|
private String pluginDesc;
|
|
|
|
|
|
|
|
|
|
@Column(name="SERVICE_NAME")
|
|
|
|
|
@ApiParam("服务名称")
|
|
|
|
@ -69,6 +69,9 @@ public class BasPlugin extends BaseBean{
|
|
|
|
|
@ApiParam(value = "作者")
|
|
|
|
|
private String author;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 插件安装状态 1-安装,2-卸载
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "PLUGIN_STATUS")
|
|
|
|
|
@ApiParam(value = "插件状态", example = "1")
|
|
|
|
|
private Integer pluginStatus;
|
|
|
|
|