This commit is contained in:
禾几海
2020-08-01 12:21:03 +08:00
parent 85c3541445
commit 657a200d81
2 changed files with 13 additions and 4 deletions

View File

@@ -55,11 +55,18 @@ public interface PartnerSiteService {
List<PartnerSite> findAll();
/**
* 申请友链
* @param linkApplyReq linkApplyReq
* 申请友链
*
* @param linkApplyReq linkApplyReq
* @return linkApplyReq
*/
PartnerSite apply(LinkApplyReq linkApplyReq);
Object reapply(String key);
/**
* 重写申请友链
*
* @param key key
* @return msg
*/
String reapply(String key);
}