Ignore:
Timestamp:
02/13/25 10:05:35 (4 months ago)
Author:
ste08 <sjovanoska@…>
Branches:
master
Children:
a70b5a4
Parents:
57e58a3
Message:

Fix commiT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/skychasemk/dto/PaymentDTO.java

    r57e58a3 r3d60932  
    22
    33import lombok.Getter;
     4import lombok.Setter;
    45
    56import java.math.BigDecimal;
     
    1213    private Long paymentID;
    1314    @Getter
    14     private Integer bookingID;
     15    private Integer bookingId;
    1516    private Integer userID;
    1617    @Getter
     
    2223    @Getter
    2324    private PaymentStatus status;
     25    @Setter
    2426    @Getter
    2527    private Long flightId;
    26 
    27     public void setFlightId(Long flightId) {
    28         this.flightId = flightId;
    29     }
    3028
    3129    public enum PaymentStatus {
     
    4038        CREDIT
    4139    }
    42 
     40    public Integer getBookingID() {
     41        return bookingId;
     42    }
    4343    public void setPaymentID(Long paymentID) {
    4444        this.paymentID = paymentID;
    4545    }
    4646
    47     public void setBookingID(Integer bookingID) {
    48         this.bookingID = bookingID;
    49     }
    5047
    5148    public Long getUserID() {
Note: See TracChangeset for help on using the changeset viewer.