reapply接口

This commit is contained in:
禾几海
2020-08-01 01:13:15 +08:00
parent cd9d9ff0e6
commit 1b52e27b72
4 changed files with 36 additions and 1 deletions

View File

@@ -73,4 +73,9 @@ public class LinksController {
public Response apply(@RequestBody() LinkApplyReq linkApplyReq) {
return Response.success(partnerSiteService.apply(linkApplyReq));
}
@PostMapping("/reapply")
public Response reapply(@RequestParam("key") String key) {
return Response.success(partnerSiteService.reapply(key));
}
}