be.personify.iam.model.util.QTicket 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;
import com.querydsl.core.types.dsl.PathInits;
/**
* QTicket is a Querydsl query type for Ticket
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTicket extends EntityPathBase {
private static final long serialVersionUID = -1373084888L;
public static final QTicket ticket = new QTicket("ticket");
public final QPersisted _super = new QPersisted(this);
public final EnumPath component = createEnum("component", Component.class);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath description = createString("description");
public final ListPath files = this.createList("files", TicketFile.class, QTicketFile.class, PathInits.DIRECT2);
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final EnumPath priority = createEnum("priority", TicketPriority.class);
public final EnumPath ticketStatus = createEnum("ticketStatus", TicketStatus.class);
public final EnumPath ticketType = createEnum("ticketType", TicketType.class);
public final StringPath title = createString("title");
public QTicket(String variable) {
super(Ticket.class, forVariable(variable));
}
public QTicket(Path extends Ticket> path) {
super(path.getType(), path.getMetadata());
}
public QTicket(PathMetadata metadata) {
super(Ticket.class, metadata);
}
}