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

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

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

import java.util.Date;

public class ExamplePerson {

	private String name;

	public String getName() {
		return name;
	}


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

	private Integer age;


	public Integer getAge() {
		return age;
	}

	public void setAge(Integer age) {
		this.age = age;
	}

	private Date birthday;

	
	public Date getBirthday() {
		return birthday;
	}

	public void setBirthday(Date birthday) {
		this.birthday = birthday;
	}

	private String mobileNumber;

	
	public String getMobileNumber() {
		return mobileNumber;
	}

	
	public void setMobileNumber(String mobileNumber) {
		this.mobileNumber = mobileNumber;
	}

	@Override
	public String toString() {
		return "ExamplePerson [name=" + name + ", age=" + age + ", birthday=" + birthday + ", mobileNumber=" + mobileNumber + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy