org.example.jpadomain.QCompany Maven / Gradle / Ivy
The newest version!
package org.example.jpadomain;
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;
/**
* QCompany is a Querydsl query type for Company
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QCompany extends EntityPathBase {
private static final long serialVersionUID = -1888556096L;
public static final QCompany company = new QCompany("company");
public final QAbstractEntity _super = new QAbstractEntity(this);
//inherited
public final NumberPath id = _super.id;
public final StringPath name = createString("name");
public QCompany(String variable) {
super(Company.class, forVariable(variable));
}
public QCompany(Path extends Company> path) {
super(path.getType(), path.getMetadata());
}
public QCompany(PathMetadata> metadata) {
super(Company.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy