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

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

The newest version!
package com.alibaba.ocean.rawsdk.example.param;

import java.util.Date;

public class ExampleCar {

	private Date builtDate;

	
	public Date getBuiltDate() {
		return builtDate;
	}

	public void setBuiltDate(Date builtDate) {
		this.builtDate = builtDate;
	}

	private Date boughtDate;

	public Date getBoughtDate() {
		return boughtDate;
	}

	public void setBoughtDate(Date boughtDate) {
		this.boughtDate = boughtDate;
	}

	private String name;


	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	private String builtArea;


	public String getBuiltArea() {
		return builtArea;
	}


	public void setBuiltArea(String builtArea) {
		this.builtArea = builtArea;
	}

	private String carNumber;

	
	public String getCarNumber() {
		return carNumber;
	}

	
	public void setCarNumber(String carNumber) {
		this.carNumber = carNumber;
	}

	private Double price;


	public Double getPrice() {
		return price;
	}

	
	public void setPrice(Double price) {
		this.price = price;
	}

	private Integer seats;

	public Integer getSeats() {
		return seats;
	}

	
	public void setSeats(Integer seats) {
		this.seats = seats;
	}

	@Override
	public String toString() {
		return "ExampleCar [builtDate=" + builtDate + ", boughtDate=" + boughtDate + ", name=" + name + ", builtArea=" + builtArea + ", carNumber=" + carNumber
				+ ", price=" + price + ", seats=" + seats + "]";
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy