16 lines
373 B
Java
16 lines
373 B
Java
|
|
package com.baeldung.webflux;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class EmployeeCreationEvent {
|
||
|
|
private String employeeId;
|
||
|
|
private String creationTime;
|
||
|
|
public EmployeeCreationEvent(String employeeId, String creationTime) {
|
||
|
|
super();
|
||
|
|
this.employeeId = employeeId;
|
||
|
|
this.creationTime = creationTime;
|
||
|
|
}
|
||
|
|
}
|