com.wizarius.orm.database.data.WhereField 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.data;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.RequiredArgsConstructor;
/**
* Created by Vladyslav Shyshkin on 20.04.2018.
*/
@Data
@AllArgsConstructor
@RequiredArgsConstructor
public class WhereField {
private final T value;
private final DBSignType signType;
private boolean isQuery;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy