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

com.talk2object.plum.domain.repository.FooEntity Maven / Gradle / Ivy

There is a newer version: 0.1.22
Show newest version
package com.talk2object.plum.domain.repository;

public class FooEntity extends BaseEntity {
	private String name;
	private int age;

	public String getName() {
		return name;
	}

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

	public int getAge() {
		return age;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy