package com.sinata.web.controller.backend.system; import com.sinata.common.core.domain.R; import com.sinata.system.domain.dto.SysAgreementDTO; import com.sinata.system.domain.vo.SysAgreementVO; import com.sinata.system.service.SysAgreementService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import lombok.RequiredArgsConstructor; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; 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; import javax.validation.Valid; /** *
* 协议 前端控制器 *
* * @author mitao * @since 2024-12-23 */ @Api(tags = {"协议管理相关接口"}) @RestController @RequiredArgsConstructor @RequestMapping("/backend/sysAgreement") public class SysAgreementController { private final SysAgreementService sysAgreementService; /** * 根据类型获取协议内容 * * @param type * @return */ @ApiOperation("根据类型获取协议内容") @GetMapping("/{type}") public R