Helius
2022-07-09 ebdb4f4ded8bd24986128df47e032d22cdf6db11
src/main/java/com/xcong/farmer/cms/modules/system/controller/AdminWebSetController.java
@@ -2,6 +2,7 @@
import com.xcong.farmer.cms.common.response.Result;
import com.xcong.farmer.cms.modules.system.dto.AdminUpdateWebSetDto;
import com.xcong.farmer.cms.modules.system.service.IReleaseService;
import com.xcong.farmer.cms.modules.system.service.IWebSetService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@@ -20,6 +21,9 @@
    @Resource
    private IWebSetService iWebSetService;
    @Resource
    private IReleaseService releaseService;
    @ApiOperation(value = "查看网页设置", notes = "查看网页设置")
    @GetMapping(value = "/seeWebSetInfo")
    public Result seeWebSetInfo() {
@@ -31,4 +35,10 @@
    public Result updateWebSet(@RequestBody @Valid AdminUpdateWebSetDto adminUpdateWebSetDto) {
        return iWebSetService.updateWebSet(adminUpdateWebSetDto);
    }
    @ApiOperation(value = "发布全站", notes = "发布全站")
    @PostMapping(value = "/releaseAll")
    public Result releaseAll() {
        return null;
    }
}