Import von bestehenden CSV-Dateien
- CSV-Dateien im Verzeichniss "import" werden automatisch eingelesen
This commit is contained in:
25
src/main/java/de/etecture/ga/model/Appointment.java
Normal file
25
src/main/java/de/etecture/ga/model/Appointment.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package de.etecture.ga.model;
|
||||
|
||||
import java.time.Duration;
|
||||
import java.util.Date;
|
||||
|
||||
import org.springframework.data.annotation.Id;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class Appointment {
|
||||
|
||||
@Id
|
||||
private Long id;
|
||||
|
||||
private Garage garage;
|
||||
|
||||
private String serviceCode;
|
||||
|
||||
private String serviceName;
|
||||
|
||||
private Date appointmentTime;
|
||||
|
||||
private Duration duration;
|
||||
}
|
||||
Reference in New Issue
Block a user