com.mg.report.entity.QReportDimenEntity 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;
/**
* QReportDimenEntity is a Querydsl query type for ReportDimenEntity
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QReportDimenEntity extends EntityPathBase {
private static final long serialVersionUID = 910774760L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QReportDimenEntity reportDimenEntity = new QReportDimenEntity("reportDimenEntity");
public final com.mg.framework.entity.model.QBaseEntity _super = new com.mg.framework.entity.model.QBaseEntity(this);
public final QReportDimenItemEntity belongItem;
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;
public final StringPath defTypeDisplay = createString("defTypeDisplay");
public final NumberPath dimenLev = createNumber("dimenLev", Integer.class);
public final NumberPath dimenNum = createNumber("dimenNum", Integer.class);
public final NumberPath dimenSort = createNumber("dimenSort", Integer.class);
//inherited
public final StringPath id = _super.id;
public final BooleanPath isAccordingNeed = createBoolean("isAccordingNeed");
public final BooleanPath isDetail = createBoolean("isDetail");
public final BooleanPath isExpand = createBoolean("isExpand");
public final BooleanPath isMerged = createBoolean("isMerged");
public final ListPath itemList = this.createList("itemList", ReportDimenItemEntity.class, QReportDimenItemEntity.class, PathInits.DIRECT2);
public final com.mg.framework.entity.metadata.QMirrorPropertyEntity property;
public final com.mg.framework.entity.metadata.QMirrorPropertyEntity propertyScope;
public final EnumPath statisticalMethodEnum = createEnum("statisticalMethodEnum", StatisticalMethodEnum.class);
//inherited
public final StringPath updatedById = _super.updatedById;
//inherited
public final DateTimePath updatedDate = _super.updatedDate;
//inherited
public final StringPath updatedName = _super.updatedName;
public QReportDimenEntity(String variable) {
this(ReportDimenEntity.class, forVariable(variable), INITS);
}
public QReportDimenEntity(Path extends ReportDimenEntity> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QReportDimenEntity(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QReportDimenEntity(PathMetadata> metadata, PathInits inits) {
this(ReportDimenEntity.class, metadata, inits);
}
public QReportDimenEntity(Class extends ReportDimenEntity> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this.belongItem = inits.isInitialized("belongItem") ? new QReportDimenItemEntity(forProperty("belongItem"), inits.get("belongItem")) : null;
this.belongReport = inits.isInitialized("belongReport") ? new QReportEntity(forProperty("belongReport"), inits.get("belongReport")) : null;
this.property = inits.isInitialized("property") ? new com.mg.framework.entity.metadata.QMirrorPropertyEntity(forProperty("property"), inits.get("property")) : null;
this.propertyScope = inits.isInitialized("propertyScope") ? new com.mg.framework.entity.metadata.QMirrorPropertyEntity(forProperty("propertyScope"), inits.get("propertyScope")) : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy