-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor Steuerinformationen für Optionsmenü #190
base: sprint
Are you sure you want to change the base?
Conversation
|
||
private final OptionsmenueSettingsService optionsmenueSettingsService; | ||
|
||
@GetMapping(value = "/all", produces = MediaType.APPLICATION_JSON_VALUE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Könnten wir hier gleich noch in der URL einfließen lassen, dass es sich nur um die Messstellen handelt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Angepasst nach /messstelle/all
src/main/java/de/muenchen/dave/domain/dtos/messstelle/EditMessfaehigkeitDTO.java
Outdated
Show resolved
Hide resolved
@@ -21,7 +22,7 @@ public class EditMessstelleDTO implements Serializable { | |||
private String abbaudatum; | |||
private String datumLetztePlausibleMessung; | |||
|
|||
private String fahrzeugKlassen; | |||
private Fahrzeugklasse fahrzeugKlassen; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im Singular benennen
@@ -12,6 +13,6 @@ public class ReadMessfaehigkeitDTO implements Serializable { | |||
|
|||
private String gueltigBis; | |||
private String gueltigAb; | |||
private String fahrzeugklassen; | |||
private Fahrzeugklasse fahrzeugklassen; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im Singular benennen
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -14,7 +15,7 @@ public class ReadMessstelleInfoDTO implements Serializable { | |||
private String standort; | |||
private String stadtbezirk; | |||
private Integer stadtbezirkNummer; | |||
private String fahrzeugKlassen; | |||
private Fahrzeugklasse fahrzeugKlassen; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im Singular benennen
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -15,6 +17,6 @@ public class Messfaehigkeit { | |||
LocalDate gueltigAb; | |||
@Field(type = FieldType.Date, pattern = "dd.MM.uuuu") | |||
LocalDate gueltigBis; | |||
String fahrzeugklassen; | |||
String intervall; | |||
Fahrzeugklasse fahrzeugklassen; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im Singular benennen
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -35,8 +36,11 @@ public class Messstelle { | |||
Integer stadtbezirkNummer; | |||
|
|||
String bemerkung; | |||
String fahrzeugKlassen; | |||
|
|||
Fahrzeugklasse fahrzeugKlassen; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Im Singular benennen
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Refactor Steuerinformationen für Optionsmenü