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; @JsonProperty("total_complaints") private int totalComplaints; @JsonProperty("total_law_cases") private int totalLawCases; @JsonProperty("in_progress_violations") private long inProgressViolations; @JsonProperty("resolved_violations") private long resolvedViolations; }