nickchange
2023-10-17 a830a73fd10a21e3793c79a35be4e532de124c6f
cloud-server-other/src/main/java/com/dsh/other/controller/ProtocolController.java
@@ -29,10 +29,10 @@
    @ApiImplicitParams({
            @ApiImplicitParam(value = "类型(1=用户协议,2=隐私协议,3=运动安全公告书)", name = "type", dataType = "int", required = true)
    })
    public ResultUtil<String> queryProtocol(@RequestBody Integer type){
    public ResultUtil<String> queryProtocol(Integer type){
        try {
            Protocol protocol = protocolService.getBaseMapper().selectOne(new QueryWrapper<Protocol>().eq("type", type));
            return ResultUtil.success(protocol.getContent());
            return ResultUtil.success(null == protocol ? "" : protocol.getContent());
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();