com.foreach.across.modules.user.business.QRole Maven / Gradle / Ivy
The newest version!
package com.foreach.across.modules.user.business;
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;
import com.querydsl.core.types.dsl.PathInits;
/**
* QRole is a Querydsl query type for Role
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QRole extends EntityPathBase {
private static final long serialVersionUID = 475671270L;
public static final QRole role = new QRole("role");
public final com.foreach.across.modules.hibernate.business.QSettableIdAuditableEntity _super = new com.foreach.across.modules.hibernate.business.QSettableIdAuditableEntity(this);
public final StringPath authority = createString("authority");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath createdDate = _super.createdDate;
public final StringPath description = createString("description");
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final StringPath lastModifiedBy = _super.lastModifiedBy;
//inherited
public final DateTimePath lastModifiedDate = _super.lastModifiedDate;
public final StringPath name = createString("name");
public final SetPath permissions = this.createSet("permissions", Permission.class, QPermission.class, PathInits.DIRECT2);
public QRole(String variable) {
super(Role.class, forVariable(variable));
}
public QRole(Path extends Role> path) {
super(path.getType(), path.getMetadata());
}
public QRole(PathMetadata metadata) {
super(Role.class, metadata);
}
}