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

io.github.shitsurei.dao.pojo.po.system.QSystemUser Maven / Gradle / Ivy

The newest version!
package io.github.shitsurei.dao.pojo.po.system;

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;


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

    private static final long serialVersionUID = -1524867717L;

    public static final QSystemUser systemUser = new QSystemUser("systemUser");

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

    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 email = createString("email");

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

    public final ListPath systemRoleList = this.createList("systemRoleList", SystemRole.class, QSystemRole.class, PathInits.DIRECT2);

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

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

    public QSystemUser(String variable) {
        super(SystemUser.class, forVariable(variable));
    }

    public QSystemUser(Path path) {
        super(path.getType(), path.getMetadata());
    }

    public QSystemUser(PathMetadata metadata) {
        super(SystemUser.class, metadata);
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy