com.talk2object.plum.domain.repository.BaseEntity Maven / Gradle / Ivy
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