package com.newinternaldsp.Entity;

import java.util.ArrayList;

public class Deal{
    public String id;
    public int at;
    public double bidfloor;
    public ArrayList<String> wseat;
	public Deal(String id, int at, double bidfloor, ArrayList<String> wseat) {
		super();
		this.id = id;
		this.at = at;
		this.bidfloor = bidfloor;
		this.wseat = wseat;
	}
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public int getAt() {
		return at;
	}
	public void setAt(int at) {
		this.at = at;
	}
	public double getBidfloor() {
		return bidfloor;
	}
	public void setBidfloor(double bidfloor) {
		this.bidfloor = bidfloor;
	}
	public ArrayList<String> getWseat() {
		return wseat;
	}
	public void setWseat(ArrayList<String> wseat) {
		this.wseat = wseat;
	}
    
    
}