be.personify.iam.model.util.QCategory 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;
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;
/**
* QCategory is a Querydsl query type for Category
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QCategory extends EntityPathBase {
private static final long serialVersionUID = 1428495898L;
public static final QCategory category = new QCategory("category");
public final QPersisted _super = new QPersisted(this);
public final StringPath code = createString("code");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath description = createString("description");
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath name = createString("name");
public final NumberPath sortOrder = createNumber("sortOrder", Integer.class);
public final BooleanPath visible = createBoolean("visible");
public QCategory(String variable) {
super(Category.class, forVariable(variable));
}
public QCategory(Path extends Category> path) {
super(path.getType(), path.getMetadata());
}
public QCategory(PathMetadata metadata) {
super(Category.class, metadata);
}
}