tech.deepdreams.attendance.events.LeaveUpdatedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of attendance-events Show documentation
Show all versions of attendance-events Show documentation
HR attendance events project for Spring Boot
The newest version!
package tech.deepdreams.attendance.events;
import java.time.LocalDate;
import java.time.OffsetDateTime;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class LeaveUpdatedEvent {
private Long id ;
private Long leaveId ;
private OffsetDateTime eventDate ;
private Long employeeId ;
private Long subscriberId ;
private Long recipientId ;
private LocalDate startDate ;
private LocalDate endDate ;
private String motivation ;
private String userId ;
}