💄 修改样式.
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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")
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user