com.mg.framework.entity.metadata.QMPropertyEntity Maven / Gradle / Ivy
The newest version!
package com.mg.framework.entity.metadata;
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;
/**
* QMPropertyEntity is a Querydsl query type for MPropertyEntity
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QMPropertyEntity extends EntityPathBase {
private static final long serialVersionUID = 2012117690L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QMPropertyEntity mPropertyEntity = new QMPropertyEntity("mPropertyEntity");
public final com.mg.framework.entity.model.QBaseEntity _super = new com.mg.framework.entity.model.QBaseEntity(this);
public final QMObjectEntity belongMObject;
//inherited
public final StringPath createdById = _super.createdById;
//inherited
public final DateTimePath createdDate = _super.createdDate;
//inherited
public final StringPath createdName = _super.createdName;
public final StringPath enumName = createString("enumName");
public final StringPath fieldDefaultValue = createString("fieldDefaultValue");
public final NumberPath fieldLength = createNumber("fieldLength", Integer.class);
public final StringPath fieldName = createString("fieldName");
public final NumberPath fieldPrecision = createNumber("fieldPrecision", Integer.class);
public final EnumPath fieldType = createEnum("fieldType", MFieldTypeEnum.class);
public final StringPath formula = createString("formula");
public final StringPath groupName = createString("groupName");
//inherited
public final StringPath id = _super.id;
public final EnumPath inVisibleType = createEnum("inVisibleType", MInVisibleTypeEnum.class);
public final BooleanPath isEnable = createBoolean("isEnable");
public final BooleanPath isNullable = createBoolean("isNullable");
public final BooleanPath isPrimaryKey = createBoolean("isPrimaryKey");
public final BooleanPath isReadOnly = createBoolean("isReadOnly");
public final BooleanPath isSearchCondition = createBoolean("isSearchCondition");
public final QMPropertyEntity mappedByProperty;
public final QMObjectEntity metaObject;
public final StringPath name = createString("name");
public final StringPath secondName = createString("secondName");
public final NumberPath sort = createNumber("sort", Integer.class);
public final EnumPath typeEnum = createEnum("typeEnum", MTypeEnum.class);
//inherited
public final StringPath updatedById = _super.updatedById;
//inherited
public final DateTimePath updatedDate = _super.updatedDate;
//inherited
public final StringPath updatedName = _super.updatedName;
public QMPropertyEntity(String variable) {
this(MPropertyEntity.class, forVariable(variable), INITS);
}
public QMPropertyEntity(Path extends MPropertyEntity> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QMPropertyEntity(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QMPropertyEntity(PathMetadata> metadata, PathInits inits) {
this(MPropertyEntity.class, metadata, inits);
}
public QMPropertyEntity(Class extends MPropertyEntity> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this.belongMObject = inits.isInitialized("belongMObject") ? new QMObjectEntity(forProperty("belongMObject")) : null;
this.mappedByProperty = inits.isInitialized("mappedByProperty") ? new QMPropertyEntity(forProperty("mappedByProperty"), inits.get("mappedByProperty")) : null;
this.metaObject = inits.isInitialized("metaObject") ? new QMObjectEntity(forProperty("metaObject")) : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy