- Timestamp:
- 02/13/25 10:05:35 (4 months ago)
- Branches:
- master
- Children:
- a70b5a4
- Parents:
- 57e58a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/skychasemk/dto/PaymentDTO.java
r57e58a3 r3d60932 2 2 3 3 import lombok.Getter; 4 import lombok.Setter; 4 5 5 6 import java.math.BigDecimal; … … 12 13 private Long paymentID; 13 14 @Getter 14 private Integer bookingI D;15 private Integer bookingId; 15 16 private Integer userID; 16 17 @Getter … … 22 23 @Getter 23 24 private PaymentStatus status; 25 @Setter 24 26 @Getter 25 27 private Long flightId; 26 27 public void setFlightId(Long flightId) {28 this.flightId = flightId;29 }30 28 31 29 public enum PaymentStatus { … … 40 38 CREDIT 41 39 } 42 40 public Integer getBookingID() { 41 return bookingId; 42 } 43 43 public void setPaymentID(Long paymentID) { 44 44 this.paymentID = paymentID; 45 45 } 46 46 47 public void setBookingID(Integer bookingID) {48 this.bookingID = bookingID;49 }50 47 51 48 public Long getUserID() {
Note:
See TracChangeset
for help on using the changeset viewer.