| | |
| | | @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(); |