This commit is contained in:
六如
2024-10-25 20:28:42 +08:00
parent 8b34c0a80d
commit dabf8032ca
87 changed files with 1031 additions and 307 deletions

View File

@@ -1,13 +0,0 @@
package com.gitee.sop.support.service;
/**
*
* @author 六如
*/
public interface IsvService {
/**
* 刷新isv
* @param appId
*/
void refresh(String appId);
}

View File

@@ -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);
}