Merge pull request #11780 from dataease/pr@dev-v2@fixDS

feat: 字体管理
This commit is contained in:
taojinlong 2024-08-27 14:06:31 +08:00 committed by GitHub
commit 4b668025eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -114,7 +114,7 @@ public class FontManage {
public List<FontDto> defaultFont() {
QueryWrapper<CoreFont> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("isDefault", 1);
queryWrapper.eq("is_default", 1);
List<CoreFont> coreFonts = coreFontMapper.selectList(queryWrapper);
List<FontDto> fontDtos = new ArrayList<>();
for (CoreFont coreFont : coreFonts) {