This commit is contained in:
@@ -15,21 +15,11 @@ public class CheckIncrementResult {
|
||||
private Integer remainingLimit;
|
||||
private String message;
|
||||
|
||||
public static CheckIncrementResult success(Integer countChecked, Integer remainingLimit) {
|
||||
public static CheckIncrementResult success(Integer countChecked) {
|
||||
return CheckIncrementResult.builder()
|
||||
.success(true)
|
||||
.countChecked(countChecked)
|
||||
.remainingLimit(remainingLimit)
|
||||
.message("Check count incremented successfully")
|
||||
.build();
|
||||
}
|
||||
|
||||
public static CheckIncrementResult limitExceeded(Integer remainingLimit) {
|
||||
return CheckIncrementResult.builder()
|
||||
.success(false)
|
||||
.countChecked(null)
|
||||
.remainingLimit(remainingLimit)
|
||||
.message("Check limit exceeded")
|
||||
.build();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
package ru.soune.nocopy.dto.file;
|
||||
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class FileTypeStatsDto {
|
||||
private String fileType;
|
||||
private Integer count;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package ru.soune.nocopy.dto.file;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
class PeriodHistoryDto {
|
||||
private LocalDate periodStart;
|
||||
private LocalDate periodEnd;
|
||||
private Integer totalChecks;
|
||||
private Map<String, Integer> checksByType;
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package ru.soune.nocopy.dto.file;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class ProtectionLimitsDto {
|
||||
private Long userId;
|
||||
private String userName;
|
||||
private String userEmail;
|
||||
private LocalDate lastResetDate;
|
||||
private Integer totalChecksAllTime;
|
||||
private Integer periodChecksCount;
|
||||
private Map<String, Integer> checksByFileType;
|
||||
private LocalDate periodStartDate;
|
||||
private LocalDate periodEndDate;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime lastCheckAt;
|
||||
}
|
||||
Reference in New Issue
Block a user