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

io.github.shitsurei.dao.pojo.po.system.QSystemLog 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;


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

    private static final long serialVersionUID = -187745388L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QSystemLog systemLog = new QSystemLog("systemLog");

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

    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 EnumPath logType = createEnum("logType", io.github.shitsurei.dao.enumerate.system.LogType.class);

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

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

    public final QSystemUser systemUser;

    public QSystemLog(String variable) {
        this(SystemLog.class, forVariable(variable), INITS);
    }

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

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

    public QSystemLog(PathMetadata metadata, PathInits inits) {
        this(SystemLog.class, metadata, inits);
    }

    public QSystemLog(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.systemUser = inits.isInitialized("systemUser") ? new QSystemUser(forProperty("systemUser")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy