com.wizarius.orm.database.data.WhereBaseCondition 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
The newest version!
package com.wizarius.orm.database.data;
import lombok.Getter;
/**
* @author shvi
* Date: 07.10.2021
* Time: 18:54
*/
@Getter
public class WhereBaseCondition extends WhereCondition {
private final String dbFieldName;
private final T value;
private final DBSignType signType;
public WhereBaseCondition(DBWhereType type, String dbFieldName, T value, DBSignType signType) {
super(type);
this.dbFieldName = dbFieldName;
this.value = value;
this.signType = signType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy