tech.ydb.yoj.repository.test.sample.TeamView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoj-repository-test Show documentation
Show all versions of yoj-repository-test Show documentation
Basic tests which all YOJ Repository implementations must pass.
The newest version!
package tech.ydb.yoj.repository.test.sample;
import lombok.Value;
import tech.ydb.yoj.repository.db.Table;
import tech.ydb.yoj.repository.test.sample.model.Team;
@Value
public final class TeamView implements Table.View {
Team.Id id;
Team.Id parentId;
}