mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 12:56:28 +08:00
5.0
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
package com.gitee.sop.support.service;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author 六如
|
||||
*/
|
||||
public interface IsvService {
|
||||
/**
|
||||
* 刷新isv
|
||||
* @param appId
|
||||
*/
|
||||
void refresh(String appId);
|
||||
}
|
@@ -0,0 +1,37 @@
|
||||
package com.gitee.sop.support.service;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
* @author 六如
|
||||
*/
|
||||
public interface RefreshService {
|
||||
|
||||
/**
|
||||
* 刷新api信息
|
||||
*
|
||||
* @param apiIds
|
||||
*/
|
||||
void refreshApi(Collection<Long> apiIds);
|
||||
|
||||
/**
|
||||
* 刷新isv
|
||||
*
|
||||
* @param appIds
|
||||
*/
|
||||
void refreshIsv(Collection<String> appIds);
|
||||
|
||||
/**
|
||||
* 刷新isv接口权限
|
||||
*
|
||||
* @param isvIds
|
||||
*/
|
||||
void refreshIsvPerm(Collection<Long> isvIds);
|
||||
|
||||
/**
|
||||
* 刷新secret
|
||||
*
|
||||
* @param isvIds
|
||||
*/
|
||||
void refreshSecret(Collection<Long> isvIds);
|
||||
}
|
Reference in New Issue
Block a user