CoolFace
Apppublic

sakthivikram/geo-location

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
StatusHistoryResponse.java22 linesDownload Raw Back to dto
1package com.georeport.dto;2 3import lombok.*;4import java.time.LocalDateTime;5 6/**7 * DTO for issue status history response.8 */9@Data10@NoArgsConstructor11@AllArgsConstructor12@Builder13public class StatusHistoryResponse {14 15    private Long id;16    private String oldStatus;17    private String newStatus;18    private String changedByName;19    private String changeReason;20    private LocalDateTime createdAt;21}22