BSP pojo
parent
60d2501505
commit
f24fe9eae3
@ -0,0 +1,21 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/2/16 9:41
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel(value = "方法启用、禁用")
|
||||
public class MethodStatusVo {
|
||||
|
||||
public List<Long> ids;
|
||||
public Integer isValid;
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.dao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2022/2/16 10:48
|
||||
* @Modify:
|
||||
**/
|
||||
public interface IRegistryGroupDao {
|
||||
|
||||
/**
|
||||
* 获取所有的应用名称
|
||||
* @return
|
||||
*/
|
||||
List<String> getAllAppNames();
|
||||
}
|
Loading…
Reference in New Issue