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.
Serializable hinzugefügt und private gemacht
- Loading branch information
1 parent
27f8180
commit 4de86c2
Showing
2 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
23 changes: 12 additions & 11 deletions
23
.../java/de/muenchen/dave/domain/dtos/laden/messwerte/BelastungsplanMessquerschnitteDTO.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,20 +1,21 @@ | ||
package de.muenchen.dave.domain.dtos.laden.messwerte; | ||
|
||
import java.io.Serializable; | ||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class BelastungsplanMessquerschnitteDTO { | ||
List<LadeBelastungsplanMessquerschnittDataDTO> ladeBelastungsplanMessquerschnittDataDTOList = new ArrayList<>(); | ||
String strassenname; | ||
String mstId; | ||
Integer stadtbezirkNummer; | ||
Integer totalKfz; | ||
Integer totalSv; | ||
Integer totalGv; | ||
Integer totalRad; | ||
BigDecimal totalPercentSv; | ||
BigDecimal totalPercentGv; | ||
public class BelastungsplanMessquerschnitteDTO implements Serializable { | ||
private List<LadeBelastungsplanMessquerschnittDataDTO> ladeBelastungsplanMessquerschnittDataDTOList; | ||
private String strassenname; | ||
private String mstId; | ||
private Integer stadtbezirkNummer; | ||
private Integer totalKfz; | ||
private Integer totalSv; | ||
private Integer totalGv; | ||
private Integer totalRad; | ||
private BigDecimal totalPercentSv; | ||
private BigDecimal totalPercentGv; | ||
} |
3 changes: 2 additions & 1 deletion
3
...e/muenchen/dave/domain/dtos/laden/messwerte/LadeBelastungsplanMessquerschnittDataDTO.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