All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.shitsurei.dao.pojo.po.business.QBusinessUser Maven / Gradle / Ivy

The newest version!
package io.github.shitsurei.dao.pojo.po.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;


/**
 * QBusinessUser is a Querydsl query type for BusinessUser
 */
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QBusinessUser extends EntityPathBase {

    private static final long serialVersionUID = -776893477L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QBusinessUser businessUser = new QBusinessUser("businessUser");

    public final StringPath businessUserId = createString("businessUserId");

    public final StringPath createPerson = createString("createPerson");

    public final DateTimePath createTime = createDateTime("createTime", java.util.Date.class);

    public final EnumPath dataStatus = createEnum("dataStatus", io.github.shitsurei.dao.enumerate.system.DataStatus.class);

    public final StringPath name = createString("name");

    public final StringPath phone = createString("phone");

    public final io.github.shitsurei.dao.pojo.po.system.QSystemFile profile;

    public final StringPath remark = createString("remark");

    public final io.github.shitsurei.dao.pojo.po.system.QSystemUser systemUser;

    public final StringPath title = createString("title");

    public final StringPath updatePerson = createString("updatePerson");

    public final DateTimePath updateTime = createDateTime("updateTime", java.util.Date.class);

    public QBusinessUser(String variable) {
        this(BusinessUser.class, forVariable(variable), INITS);
    }

    public QBusinessUser(Path path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }

    public QBusinessUser(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }

    public QBusinessUser(PathMetadata metadata, PathInits inits) {
        this(BusinessUser.class, metadata, inits);
    }

    public QBusinessUser(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.profile = inits.isInitialized("profile") ? new io.github.shitsurei.dao.pojo.po.system.QSystemFile(forProperty("profile"), inits.get("profile")) : null;
        this.systemUser = inits.isInitialized("systemUser") ? new io.github.shitsurei.dao.pojo.po.system.QSystemUser(forProperty("systemUser")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy