💄 修改样式.

This commit is contained in:
lijiahang
2024-06-19 10:48:00 +08:00
parent 2919950c5b
commit 830622aafb
8 changed files with 8 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
package com.orion.visor.module.infra.controller;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdatePartialRequest;
import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdateRequest;
@@ -56,6 +57,7 @@ public class PreferenceController {
return preferenceService.getPreferenceByType(type, items);
}
@IgnoreLog
@GetMapping("/get-default")
@Operation(summary = "查询默认偏好")
@Parameter(name = "type", description = "type", required = true)

View File

@@ -28,7 +28,7 @@ public class TerminalPreferenceStrategy extends AbstractGenericsDataStrategy<Ter
String defaultDisplaySetting = TerminalPreferenceModel.DisplaySettingModel
.builder()
.fontFamily("_")
.fontSize(13)
.fontSize(14)
.lineHeight(1.12)
.letterSpacing(0)
.fontWeight("normal")

View File

@@ -33,7 +33,7 @@ public class TagAutoClearTask {
@Scheduled(cron = "0 0 2 * * ?")
public void clear() {
log.info("TagAutoClearTask.clear start");
// 获取锁并清理
// 获取锁并执行
LockerUtils.tryLock(LOCK_KEY, tagService::clearUnusedTag);
log.info("TagAutoClearTask.clear finish");
}