| | |
| | | public AjaxResult saveSysSet(SysSetVO vo) { |
| | | TSysSet byId = sysSetService.getById(1); |
| | | BeanUtils.copyProperties(vo, byId); |
| | | // 音效更改及更改音效设置时间 |
| | | if (!byId.getCorrect().equals(vo.getCorrect()) || !byId.getError().equals(vo.getError())) { |
| | | byId.setAcousticsTime(new Date()); |
| | | } |
| | | byId.setId(1); |
| | | sysSetService.updateById(byId); |
| | | return AjaxResult.success("保存成功"); |
| | |
| | | |
| | | @PostMapping("/agreement") |
| | | @ApiOperation(value = "协议", tags = {"后台-协议管理"}) |
| | | public AjaxResult agreement(@RequestBody 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()); |
| | | } |
| | | } |
| | |
| | | List<String> strings = new ArrayList<>(); |
| | | strings.add("insertTime"); |
| | | wrapper.orderByDesc(strings); |
| | | |
| | | List<TUseGuide> useGuides = useGuideService.list(wrapper); |
| | | PageInfo<TUseGuide> res = new PageInfo<>(pageNumber, pageSize); |
| | | res.setRecords(useGuides); |
| | |
| | | PageInfo<TUseGuide> res = new PageInfo<>(query.getPageNumber(), query.getPageSize()); |
| | | List<TUseGuide> useGuides = useGuideService.list(wrapper); |
| | | List<TUseGuide> useGuides2 = useGuideService.listAll(query); |
| | | PageInfo<TUseGuide> page = useGuideService.page(new PageInfo<>(query.getPageNumber(), query.getPageSize()), wrapper); |
| | | |
| | | res.setRecords(useGuides2); |
| | | res.setTotal(useGuides.size()); |
| | | |
| | |
| | | |
| | | @PostMapping("/updateUseGuide") |
| | | @ApiOperation(value = "使用指南-添加/编辑/查看详情", tags = {"使用指南"}) |
| | | public AjaxResult<TUseGuide> updateUseGuide(@RequestBody UseGuidDTO dto) { |
| | | public AjaxResult<TUseGuide> updateUseGuide(UseGuidDTO dto) { |
| | | switch (dto.getType()) { |
| | | case 1: |
| | | TUseGuide useGuide = new TUseGuide(); |