fix(themes): 新增字段local标识皮肤所属国家

This commit is contained in:
2026-03-09 11:21:33 +08:00
parent 0d3a2cfd9f
commit abfcf7bfc8
4 changed files with 9 additions and 2 deletions

View File

@@ -56,4 +56,5 @@ public class KeyboardThemesPageReqVO extends PageParam {
@Schema(description = "真实下载数量", example = "3353") @Schema(description = "真实下载数量", example = "3353")
private Long realDownloadCount; private Long realDownloadCount;
} @Schema(description = "所属国家")
private String local;}

View File

@@ -73,4 +73,7 @@ public class KeyboardThemesRespVO {
@ExcelProperty("真实下载数量") @ExcelProperty("真实下载数量")
private Long realDownloadCount; private Long realDownloadCount;
@Schema(description = "所属国家")
@ExcelProperty("所属国家")
private String local;
} }

View File

@@ -57,4 +57,6 @@ public class KeyboardThemesSaveReqVO {
@Schema(description = "真实下载数量", example = "3353") @Schema(description = "真实下载数量", example = "3353")
private Long realDownloadCount; private Long realDownloadCount;
@Schema(description = "所属国家")
private String local;
} }

View File

@@ -1,6 +1,7 @@
package com.yolo.keyboard.dal.dataobject.themes; package com.yolo.keyboard.dal.dataobject.themes;
import com.yolo.keyboard.framework.tenant.core.aop.TenantIgnore; import com.yolo.keyboard.framework.tenant.core.aop.TenantIgnore;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*; import lombok.*;
import java.util.*; import java.util.*;
import java.math.BigDecimal; import java.math.BigDecimal;
@@ -88,5 +89,5 @@ public class KeyboardThemesDO {
*/ */
private Long realDownloadCount; private Long realDownloadCount;
private String local;
} }