| | |
| | | package com.panzhihua.service_community.api; |
| | | |
| | | import com.panzhihua.common.model.dtos.AppletesBackstageConfigDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.service_community.service.ComOpsAdvService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | |
| | | public R getJumpContent(){ |
| | | return comOpsAdvService.getJumpContent(); |
| | | } |
| | | |
| | | /** |
| | | * 编辑运营后台系统配置 |
| | | * @param appletesBackstageConfigDTO 编辑内容 |
| | | * @return 编辑结果 |
| | | */ |
| | | @PostMapping("putjumpcontent") |
| | | public R putJumpContent(@RequestBody AppletesBackstageConfigDTO appletesBackstageConfigDTO){ |
| | | return comOpsAdvService.putJumpContent(appletesBackstageConfigDTO); |
| | | } |
| | | } |