This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package ru.soune.nocopy.dto.statistic;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MonitoringStatisticRequest {
|
||||
private String authToken;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package ru.soune.nocopy.dto.statistic;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
public class MonitoringStatisticResponse {
|
||||
|
||||
@JsonProperty("day")
|
||||
private Long everyDay;
|
||||
|
||||
@JsonProperty("month")
|
||||
private Long everyMonth;
|
||||
|
||||
@JsonProperty("weekly")
|
||||
private Long everyWeekly;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user