版本获取 不做权限校验

This commit is contained in:
GYJ
2025-04-02 14:12:28 +08:00
parent 3ffa3609d1
commit 0fe7eeaf70

View File

@@ -71,7 +71,7 @@ public class VersionController {
* @return VersionDTO
*/
@GetMapping("/{source}/{type}")
@SaAdminCheckPermission(value = "version:get", name = "版本获取")
// @SaAdminCheckPermission(value = "version:get", name = "版本获取")
public CzgResult<VersionDTO> getVersionInfo(@PathVariable("source") String source, @PathVariable("type") String type) {
return versionService.getVersionInfo(source, type);
}