io.smilego.tenant.model.QProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multi-tenant-spring-boot-starter Show documentation
Show all versions of multi-tenant-spring-boot-starter Show documentation
A application used as an example on how to set up pushing
its components to the Central Repository.
package io.smilego.tenant.model;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
/**
* QProperty is a Querydsl query type for Property
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QProperty extends EntityPathBase {
private static final long serialVersionUID = 432057496L;
public static final QProperty property = new QProperty("property");
public final QBaseEntity _super = new QBaseEntity(this);
public final StringPath code = createString("code");
//inherited
public final DateTimePath data = _super.data;
public final StringPath description = createString("description");
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final NumberPath version = _super.version;
public QProperty(String variable) {
super(Property.class, forVariable(variable));
}
public QProperty(Path extends Property> path) {
super(path.getType(), path.getMetadata());
}
public QProperty(PathMetadata metadata) {
super(Property.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy