23 lines
503 B
Java
23 lines
503 B
Java
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("in_progress_violations")
|
||
|
|
private long inProgressViolations;
|
||
|
|
|
||
|
|
@JsonProperty("resolved_violations")
|
||
|
|
private long resolvedViolations;
|
||
|
|
}
|