generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat/DAVE-83-detektordaten-einzelmessstelle (#42)
* DTO erweitert für benötigte daten im frontend * spotless
- Loading branch information
1 parent
bab3c8e
commit 8005249
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/main/java/de/muenchen/dave/domain/dtos/messstelle/ReadMessstelleInfoDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
package de.muenchen.dave.domain.dtos.messstelle; | ||
|
||
import java.io.Serializable; | ||
import java.time.LocalDate; | ||
import java.util.List; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class ReadMessstelleInfoDTO implements Serializable { | ||
|
||
private String id; | ||
private String mstId; | ||
private String standort; | ||
private String stadtbezirk; | ||
private Integer stadtbezirkNummer; | ||
private Double longitude; | ||
private Double latitude; | ||
private LocalDate datumLetztePlausibleMessung; | ||
private LocalDate realisierungsdatum; | ||
private LocalDate abbaudatum; | ||
private List<ReadMessquerschnittDTO> messquerschnitte; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters