feat(themes): 新增主题所属国家字段 local

This commit is contained in:
2026-03-05 19:54:34 +08:00
parent c3768caae6
commit 5e9873bf72
2 changed files with 7 additions and 0 deletions

View File

@@ -102,4 +102,8 @@ public class KeyboardThemes {
@TableField(value = "real_download_count")
@Schema(description = "真实下载数量")
private Long realDownloadCount;
@TableField(value = "local")
@Schema(description = "所属国家")
private String local;
}

View File

@@ -70,4 +70,7 @@ public class KeyboardThemesRespVO {
@Schema(description = "当前用户是否已购买")
private Boolean isPurchased;
@Schema(description = "所属国家")
private String local;
}