帮助中心

This commit is contained in:
2026-03-13 14:34:30 +08:00
parent 9d120c7e49
commit 554be38052

View File

@@ -27,17 +27,17 @@ public class UserVersionController {
@Resource
private SysParamsService sysParamsService;
// /**
// * 获取版本信息
// *
// * @param source 渠道
// * @param type 类型
// * @return VersionDTO
// */
// @GetMapping("/version/info/{source}/{type}")
// public CzgResult<VersionDTO> getVersionInfo(@PathVariable("source") String source, @PathVariable("type") String type) {
// return versionService.getVersionInfo(source, type);
// }
/**
* 获取版本信息
*
* @param source 渠道
* @param type 类型
* @return VersionDTO
*/
@GetMapping("/version/info/{source}/{type}")
public CzgResult<VersionDTO> getVersionInfo(@PathVariable("source") String source, @PathVariable("type") String type) {
return versionService.getVersionInfo(source, type);
}
/**