| | |
| | | return R.ok().add(map); |
| | | } |
| | | |
| | | @GetMapping("/getBranding") |
| | | public R getBranding() { |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("logo", configService.getConfigValue("system.logo", "/static/images/zy-logo.png")); |
| | | map.put("title", configService.getConfigValue("system.title", "浙江中扬 - 自动化立体仓库 - WCS")); |
| | | map.put("copyright", configService.getConfigValue("system.copyright", "© 2026 浙江中扬立库技术有限公司")); |
| | | return R.ok().add(map); |
| | | } |
| | | |
| | | @PostMapping("/runtimeConfig/update") |
| | | @OpenApiLog(memo = "修改运行参数") |
| | | public R updateRuntimeConfig(@RequestBody RuntimeConfigUpdateParam param) { |