just small class member reorder

This commit is contained in:
Michał Michaluk
2018-03-11 17:52:54 +01:00
parent 33fffa777c
commit 670251c728

View File

@@ -24,15 +24,15 @@ public class DemandAdjustmentEntity implements Serializable {
@Convert(converter = AdjustDemandAsJson.class)
private AdjustDemand adjustment;
@Setter
private LocalDate cleanAfter;
DemandAdjustmentEntity(String note, String customerRepresentative, AdjustDemand adjustment) {
this.note = note;
this.customerRepresentative = customerRepresentative;
this.adjustment = adjustment;
}
@Setter
private LocalDate cleanAfter;
public static class AdjustDemandAsJson extends JsonConverter<AdjustDemand> {
public AdjustDemandAsJson() {
super(AdjustDemand.class);