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.
Merge pull request #41 from it-at-m/sprint
Vorbereitung zur Demo am 31.01.24
- Loading branch information
Showing
18 changed files
with
364 additions
and
103 deletions.
There are no files selected for viewing
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
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
14 changes: 14 additions & 0 deletions
14
src/main/java/de/muenchen/dave/domain/dtos/messstelle/MessstelleOverviewDTO.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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package de.muenchen.dave.domain.dtos.messstelle; | ||
|
||
import java.io.Serializable; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class MessstelleOverviewDTO implements Serializable { | ||
private String id; | ||
private String mstId; | ||
private String name; | ||
private String status; | ||
private Boolean sichtbarDatenportal; | ||
private Boolean geprueft; | ||
} |
35 changes: 0 additions & 35 deletions
35
src/main/java/de/muenchen/dave/domain/dtos/messstelle/ReadMessstelleDTO.java
This file was deleted.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
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 |
---|---|---|
@@ -0,0 +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
13 changes: 13 additions & 0 deletions
13
src/main/java/de/muenchen/dave/domain/enums/MessstelleStatus.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package de.muenchen.dave.domain.enums; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@AllArgsConstructor | ||
public enum MessstelleStatus { | ||
IN_PLANUNG("in Planung / in Entwurf"), IN_BESTAND("in Bestand / in Betrieb"), AUSSER_BETRIEB( | ||
"außer Betrieb"), ABGEBAUT("abgebaut"), UNBEKANNT("unbekannt"); | ||
|
||
@Getter | ||
private final String beschreibung; | ||
} |
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
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
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
Oops, something went wrong.