|
@@ -1,5 +1,6 @@
|
|
|
package com.hfln.portal.common.dto.data.stat;
|
|
|
|
|
|
+
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
@@ -9,14 +10,14 @@ import java.util.List;
|
|
|
public class ScreenFallingDTO {
|
|
|
|
|
|
@Schema(description = "月统计信息列表")
|
|
|
- private List<MonthStatInfo> monthStatInfo;
|
|
|
+ private List<FallingMonthStatInfo> monthStatInfo;
|
|
|
|
|
|
@Schema(description = "日统计信息列表")
|
|
|
- private List<DayStatInfo> dayStatInfo;
|
|
|
+ private List<FallingDayStatInfo> dayStatInfo;
|
|
|
|
|
|
@Data
|
|
|
@Schema(description = "月统计信息")
|
|
|
- public static class MonthStatInfo {
|
|
|
+ public static class FallingMonthStatInfo {
|
|
|
@Schema(description = "年月,格式: yyyy-MM")
|
|
|
private String month;
|
|
|
|
|
@@ -28,7 +29,7 @@ public class ScreenFallingDTO {
|
|
|
|
|
|
@Data
|
|
|
@Schema(description = "日统计信息")
|
|
|
- public static class DayStatInfo {
|
|
|
+ public static class FallingDayStatInfo {
|
|
|
@Schema(description = "日期,格式: yyyy-MM-dd")
|
|
|
private String date;
|
|
|
|