无关风月
2024-06-18 0af6d3bb2176ad5dd61e940158e1929249204af5
ruoyi-service/ruoyi-management/src/main/java/com/ruoyi/management/controller/TSysSetController.java
@@ -151,13 +151,13 @@
    @PostMapping("/agreement")
    @ApiOperation(value = "协议", tags = {"后台-协议管理"})
    public AjaxResult agreement( AggrementDTO dto) {
    public AjaxResult agreement(AggrementDTO dto) {
        TProtocol protocol = protocolService.getById(dto.getType());
        if (StringUtils.hasLength(dto.getContent())) {
        if (StringUtils.hasLength(dto.getContent())){
            protocol.setContent(dto.getContent());
            protocolService.updateById(protocol);
            return AjaxResult.success("修改成功");
        } else {
        }else {
            return AjaxResult.success(protocol.getContent());
        }
    }