com.mg.report.entity.QReportViewerEntity Maven / Gradle / Ivy
The newest version!
package com.mg.report.entity;
import static com.mysema.query.types.PathMetadataFactory.*;
import com.mysema.query.types.path.*;
import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
import com.mysema.query.types.path.PathInits;
/**
* QReportViewerEntity is a Querydsl query type for ReportViewerEntity
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QReportViewerEntity extends EntityPathBase {
private static final long serialVersionUID = 1193951137L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QReportViewerEntity reportViewerEntity = new QReportViewerEntity("reportViewerEntity");
public final com.mg.framework.entity.model.QBaseEntity _super = new com.mg.framework.entity.model.QBaseEntity(this);
public final QReportEntity belongReport;
//inherited
public final StringPath createdById = _super.createdById;
//inherited
public final DateTimePath createdDate = _super.createdDate;
//inherited
public final StringPath createdName = _super.createdName;
//inherited
public final StringPath id = _super.id;
//inherited
public final StringPath updatedById = _super.updatedById;
//inherited
public final DateTimePath updatedDate = _super.updatedDate;
//inherited
public final StringPath updatedName = _super.updatedName;
public final StringPath userId = createString("userId");
public QReportViewerEntity(String variable) {
this(ReportViewerEntity.class, forVariable(variable), INITS);
}
public QReportViewerEntity(Path extends ReportViewerEntity> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QReportViewerEntity(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QReportViewerEntity(PathMetadata> metadata, PathInits inits) {
this(ReportViewerEntity.class, metadata, inits);
}
public QReportViewerEntity(Class extends ReportViewerEntity> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this.belongReport = inits.isInitialized("belongReport") ? new QReportEntity(forProperty("belongReport"), inits.get("belongReport")) : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy