Ignore:
Timestamp:
11/11/21 11:59:35 (3 years ago)
Author:
andrejTavchioski <andrej.tavchioski@…>
Branches:
master
Children:
8588fcb
Parents:
97fbc67 (diff), 9504a09 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of https://develop.finki.ukim.mk/git/ParkUp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/app/src/main/java/parkup/entities/ParkingSpace.java

    r97fbc67 r2ace8f0  
    3131    @Column(name = "latitude")
    3232    private float lat;
     33<<<<<<< HEAD
    3334
    3435    @Column(name = "longitude")
     
    4344    }
    4445
     46=======
     47
     48    @Column(name = "longitude")
     49    private float lng;
     50
     51    @OneToOne(cascade = {CascadeType.ALL})
     52    @JoinColumn(name = "parking_zona")
     53    private ParkingZone parkingZone;
     54
     55    public ParkingSpace() {}
     56
     57>>>>>>> 9504a097ce80831ea7e7130dff7215d5fbf8e939
    4558    public ParkingSpace(int psId, String psName, boolean isTaken, boolean isHandicaped, float lat, float lng) {
    4659        this.psId = psId;
     
    107120        this.lng = lng;
    108121    }
     122<<<<<<< HEAD
    109123
    110124    @Override
     
    118132                '}';
    119133    }
     134=======
     135>>>>>>> 9504a097ce80831ea7e7130dff7215d5fbf8e939
    120136}
    121137
Note: See TracChangeset for help on using the changeset viewer.