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

com.blazebit.persistence.testsuite.entity.DocumentNodeCTE Maven / Gradle / Ivy

The newest version!
package com.blazebit.persistence.testsuite.entity;

import java.io.Serializable;

import javax.persistence.Entity;
import javax.persistence.Id;

import com.blazebit.persistence.CTE;

@CTE
@Entity
public class DocumentNodeCTE implements Serializable {
	private static final long serialVersionUID = 1L;
	
	private Long id;
	private Long parentId;
	
	@Id
	public Long getId() {
		return id;
	}
	
	public void setId(Long id) {
		this.id = id;
	}
	
	public Long getParentId() {
		return parentId;
	}
	
	public void setParentId(Long parentId) {
		this.parentId = parentId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy