All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.ocean.rawsdk.example.param.ExampleHouse Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.alibaba.ocean.rawsdk.example.param;

public class ExampleHouse {

	private String location;

	
	public String getLocation() {
		return location;
	}

	
	public void setLocation(String location) {
		this.location = location;
	}

	private Integer areaSize;

	
	public Integer getAreaSize() {
		return areaSize;
	}

	public void setAreaSize(Integer areaSize) {
		this.areaSize = areaSize;
	}

	private Boolean rent;

	
	public Boolean getRent() {
		return rent;
	}

	
	public void setRent(Boolean rent) {
		this.rent = rent;
	}

	private Integer rooms;

	
	public Integer getRooms() {
		return rooms;
	}

	
	public void setRooms(Integer rooms) {
		this.rooms = rooms;
	}

	@Override
	public String toString() {
		return "ExampleHouse [location=" + location + ", areaSize=" + areaSize + ", rent=" + rent + ", rooms=" + rooms + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy