just small class member reorder
This commit is contained in:
@@ -24,15 +24,15 @@ public class DemandAdjustmentEntity implements Serializable {
|
|||||||
@Convert(converter = AdjustDemandAsJson.class)
|
@Convert(converter = AdjustDemandAsJson.class)
|
||||||
private AdjustDemand adjustment;
|
private AdjustDemand adjustment;
|
||||||
|
|
||||||
|
@Setter
|
||||||
|
private LocalDate cleanAfter;
|
||||||
|
|
||||||
DemandAdjustmentEntity(String note, String customerRepresentative, AdjustDemand adjustment) {
|
DemandAdjustmentEntity(String note, String customerRepresentative, AdjustDemand adjustment) {
|
||||||
this.note = note;
|
this.note = note;
|
||||||
this.customerRepresentative = customerRepresentative;
|
this.customerRepresentative = customerRepresentative;
|
||||||
this.adjustment = adjustment;
|
this.adjustment = adjustment;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Setter
|
|
||||||
private LocalDate cleanAfter;
|
|
||||||
|
|
||||||
public static class AdjustDemandAsJson extends JsonConverter<AdjustDemand> {
|
public static class AdjustDemandAsJson extends JsonConverter<AdjustDemand> {
|
||||||
public AdjustDemandAsJson() {
|
public AdjustDemandAsJson() {
|
||||||
super(AdjustDemand.class);
|
super(AdjustDemand.class);
|
||||||
|
|||||||
Reference in New Issue
Block a user