|
|
|
@ -44,7 +44,7 @@ public class SiteInfoController extends BaseController {
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@GetMapping("/addTag/{siteInfoId}")
|
|
|
|
@GetMapping("/addTag/{siteInfoId}")
|
|
|
|
public AjaxResult addTag(@PathVariable Long siteInfoId) {
|
|
|
|
public AjaxResult addTag(@PathVariable("siteInfoId") Long siteInfoId) {
|
|
|
|
siteInfoService.addTag(siteInfoId);
|
|
|
|
siteInfoService.addTag(siteInfoId);
|
|
|
|
return AjaxResult.success();
|
|
|
|
return AjaxResult.success();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|