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

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

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

public class BaseEntity {
	private Long id;
	private Long version;

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public Long getVersion() {
		return version;
	}

	public void setVersion(Long version) {
		this.version = version;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy