feat(themestyles): 新增国家/地区字段 local

This commit is contained in:
2026-03-09 11:44:03 +08:00
parent abfcf7bfc8
commit 3a0d2b9c01
4 changed files with 8 additions and 1 deletions

View File

@@ -18,4 +18,6 @@ public class KeyboardThemeStylesPageReqVO extends PageParam {
@Schema(description = "更新时间")
private LocalDateTime updatedAt;
@Schema(description = "所属国家地区")
private String local;
}

View File

@@ -27,4 +27,6 @@ public class KeyboardThemeStylesRespVO {
@ExcelProperty("更新时间")
private LocalDateTime updatedAt;
@Schema(description = "所属国家地区")
private String local;
}

View File

@@ -19,4 +19,6 @@ public class KeyboardThemeStylesSaveReqVO {
@Schema(description = "更新时间")
private LocalDateTime updatedAt;
@Schema(description = "所属国家地区")
private String local;
}

View File

@@ -1,5 +1,6 @@
package com.yolo.keyboard.dal.dataobject.themestyles;
import com.yolo.keyboard.framework.tenant.core.aop.TenantIgnore;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.time.LocalDateTime;
@@ -38,5 +39,5 @@ public class KeyboardThemeStylesDO {
*/
private LocalDateTime updatedAt;
private String local;
}