puzhibing
2023-07-12 aa43a92c7ec9053dbaef92fe5ccb3011b670442c
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();