be.personify.iam.model.util.location.QLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.util.location;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
/**
* QLocation is a Querydsl query type for Location
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QLocation extends EntityPathBase {
private static final long serialVersionUID = -1686826894L;
public static final QLocation location = new QLocation("location");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final NumberPath altitude = createNumber("altitude", Double.class);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
public final NumberPath lattitude = createNumber("lattitude", Double.class);
public final NumberPath longitude = createNumber("longitude", Double.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public QLocation(String variable) {
super(Location.class, forVariable(variable));
}
public QLocation(Path extends Location> path) {
super(path.getType(), path.getMetadata());
}
public QLocation(PathMetadata metadata) {
super(Location.class, metadata);
}
}