All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.deepdreams.employee.events.EmployeeMutatedEvent Maven / Gradle / Ivy

package tech.deepdreams.employee.events;
import java.time.LocalDate;
import java.time.OffsetDateTime;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@AllArgsConstructor
@NoArgsConstructor
@Data
public class EmployeeMutatedEvent {
	private Long id ;
	
	private Long employeeId ;
	
	private OffsetDateTime eventDate ;
	
	private LocalDate customDate ;
	
	private Long positionId ;
	
	private Long unitId ;
	
	private String username ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy