帮助中心

This commit is contained in:
2026-03-13 14:10:47 +08:00
parent 9b4768f01e
commit cd437c221f
3 changed files with 36 additions and 3 deletions

View File

@@ -1,7 +1,9 @@
package com.czg.controller.user;
import com.czg.resp.CzgResult;
import com.czg.system.dto.SysParamsDTO;
import com.czg.system.dto.VersionDTO;
import com.czg.system.service.SysParamsService;
import com.czg.system.service.VersionService;
import jakarta.annotation.Resource;
import org.springframework.web.bind.annotation.GetMapping;
@@ -9,23 +11,40 @@ import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* 用户端
* @author GYJoker
*/
@RestController
@RequestMapping("/user/version")
@RequestMapping("/user")
public class UserVersionController {
@Resource
private VersionService versionService;
@Resource
private SysParamsService sysParamsService;
/**
* 获取版本信息
*
* @param source 渠道
* @param type 类型
* @param type 类型
* @return VersionDTO
*/
@GetMapping("/info/{source}/{type}")
@GetMapping("/version/info/{source}/{type}")
public CzgResult<VersionDTO> getVersionInfo(@PathVariable("source") String source, @PathVariable("type") String type) {
return versionService.getVersionInfo(source, type);
}
/**
* 帮助中心
*
* @return VersionDTO
*/
@GetMapping("/getHelp")
public CzgResult<List<SysParamsDTO>> getHelpInfo() {
return sysParamsService.getParamsByParamType("system_help");
}
}