@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user