Compare commits
2 Commits
0d3a2cfd9f
...
3a0d2b9c01
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a0d2b9c01 | |||
| abfcf7bfc8 |
@@ -56,4 +56,5 @@ public class KeyboardThemesPageReqVO extends PageParam {
|
||||
@Schema(description = "真实下载数量", example = "3353")
|
||||
private Long realDownloadCount;
|
||||
|
||||
}
|
||||
@Schema(description = "所属国家")
|
||||
private String local;}
|
||||
@@ -73,4 +73,7 @@ public class KeyboardThemesRespVO {
|
||||
@ExcelProperty("真实下载数量")
|
||||
private Long realDownloadCount;
|
||||
|
||||
@Schema(description = "所属国家")
|
||||
@ExcelProperty("所属国家")
|
||||
private String local;
|
||||
}
|
||||
@@ -57,4 +57,6 @@ public class KeyboardThemesSaveReqVO {
|
||||
@Schema(description = "真实下载数量", example = "3353")
|
||||
private Long realDownloadCount;
|
||||
|
||||
@Schema(description = "所属国家")
|
||||
private String local;
|
||||
}
|
||||
@@ -18,4 +18,6 @@ public class KeyboardThemeStylesPageReqVO extends PageParam {
|
||||
@Schema(description = "更新时间")
|
||||
private LocalDateTime updatedAt;
|
||||
|
||||
@Schema(description = "所属国家地区")
|
||||
private String local;
|
||||
}
|
||||
@@ -27,4 +27,6 @@ public class KeyboardThemeStylesRespVO {
|
||||
@ExcelProperty("更新时间")
|
||||
private LocalDateTime updatedAt;
|
||||
|
||||
@Schema(description = "所属国家地区")
|
||||
private String local;
|
||||
}
|
||||
@@ -19,4 +19,6 @@ public class KeyboardThemeStylesSaveReqVO {
|
||||
@Schema(description = "更新时间")
|
||||
private LocalDateTime updatedAt;
|
||||
|
||||
@Schema(description = "所属国家地区")
|
||||
private String local;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user