2026-03-12 00:21:19 +07:00
|
|
|
package ru.soune.nocopy.dto.violation;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
public class ViolationStatisticsResponse {
|
|
|
|
|
|
|
|
|
|
@JsonProperty("total_violations")
|
|
|
|
|
private long totalViolations;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("new_violations")
|
|
|
|
|
private long newViolations;
|
|
|
|
|
|
2026-04-28 13:30:00 +07:00
|
|
|
@JsonProperty("total_complaints")
|
|
|
|
|
private int totalComplaints;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("total_law_cases")
|
|
|
|
|
private int totalLawCases;
|
|
|
|
|
|
2026-03-12 00:21:19 +07:00
|
|
|
@JsonProperty("in_progress_violations")
|
|
|
|
|
private long inProgressViolations;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("resolved_violations")
|
|
|
|
|
private long resolvedViolations;
|
|
|
|
|
}
|