2026-03-10 22:47:43 +07:00
|
|
|
package ru.soune.nocopy.dto.violation;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class ViolationRequest {
|
|
|
|
|
|
|
|
|
|
@JsonProperty("file_id")
|
|
|
|
|
private String fileId;
|
|
|
|
|
|
2026-03-26 14:34:34 +07:00
|
|
|
@JsonProperty("violation_id")
|
|
|
|
|
private Long violationId;
|
|
|
|
|
|
2026-03-10 22:47:43 +07:00
|
|
|
@JsonProperty("status")
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("start_date")
|
|
|
|
|
private String startDate;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("end_date")
|
|
|
|
|
private String endDate;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("action")
|
|
|
|
|
private String action;
|
2026-03-18 17:07:44 +07:00
|
|
|
|
|
|
|
|
@JsonProperty("token")
|
|
|
|
|
private String token;
|
2026-04-28 15:41:57 +07:00
|
|
|
|
2026-04-28 16:32:30 +07:00
|
|
|
@JsonProperty("file_name")
|
2026-04-28 15:41:57 +07:00
|
|
|
private String fileName = null;
|
2026-05-13 07:44:24 +07:00
|
|
|
|
|
|
|
|
@JsonProperty("page")
|
|
|
|
|
private Integer page = 0;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("size")
|
|
|
|
|
private Integer size = 10;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("sort_direction")
|
|
|
|
|
private String sortDirection = "desc";
|
|
|
|
|
|
|
|
|
|
@JsonProperty("group_by")
|
|
|
|
|
private String groupBy;
|
|
|
|
|
|
2026-03-10 22:47:43 +07:00
|
|
|
}
|