github.com/ismailbayram/bigpicture@v0.0.0-20231225173155-e4b21f5efcff/internal/browser/javaproject/src/main/com/shashi/beans/BookingDetails.java (about)

     1  package com.shashi.beans;
     2  
     3  import java.io.Serializable;
     4  
     5  public class BookingDetails implements Serializable {
     6  	/**
     7  	 * 
     8  	 */
     9  	private static final long serialVersionUID = 1L;
    10  	private String mailId;
    11  	private String tr_no;
    12  	private String date;
    13  	private String from_stn;
    14  	private String to_stn;
    15  	private int seats;
    16  	private Double amount;
    17  
    18  	public String getMailId() {
    19  		return mailId;
    20  	}
    21  
    22  	public void setMailId(String mailId) {
    23  		this.mailId = mailId;
    24  	}
    25  
    26  	public String getTr_no() {
    27  		return tr_no;
    28  	}
    29  
    30  	public void setTr_no(String tr_no) {
    31  		this.tr_no = tr_no;
    32  	}
    33  
    34  	public String getDate() {
    35  		return date;
    36  	}
    37  
    38  	public void setDate(String date) {
    39  		this.date = date;
    40  	}
    41  
    42  	public String getFrom_stn() {
    43  		return from_stn;
    44  	}
    45  
    46  	public void setFrom_stn(String from_stn) {
    47  		this.from_stn = from_stn;
    48  	}
    49  
    50  	public String getTo_stn() {
    51  		return to_stn;
    52  	}
    53  
    54  	public void setTo_stn(String to_stn) {
    55  		this.to_stn = to_stn;
    56  	}
    57  
    58  	public int getSeats() {
    59  		return seats;
    60  	}
    61  
    62  	public void setSeats(int seats) {
    63  		this.seats = seats;
    64  	}
    65  
    66  	public Double getAmount() {
    67  		return amount;
    68  	}
    69  
    70  	public void setAmount(Double amount) {
    71  		this.amount = amount;
    72  	}
    73  
    74  }