Compare commits

..

2 Commits

8 changed files with 17 additions and 3 deletions

View File

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

View File

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

View File

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

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