com.wizarius.orm.database.entityreader.DBJoinField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wizarius-orm Show documentation
Show all versions of wizarius-orm Show documentation
Java orm for Postgres or Mysql with migration system and connection pool
package com.wizarius.orm.database.entityreader;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.ToString;
/**
* Created by Vladyslav Shyshkin on 17.01.2018.
*/
@Getter
@ToString
@AllArgsConstructor
public class DBJoinField {
private final String currentClassDBField;
private final String insideClassDBField;
private final DBParsedFieldsList joinFields;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy