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

titan.lightbatis.sample.model.entity.query.QMember Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package titan.lightbatis.sample.model.entity.query;

import static com.querydsl.core.types.PathMetadataFactory.*;
import titan.lightbatis.sample.model.entity.Member;


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.sql.ColumnMetadata;
import java.sql.Types;




/**
 * QMember is a Querydsl query type for Member
 */
@Generated("com.querydsl.sql.codegen.MetaDataSerializer")
public class QMember extends com.querydsl.sql.RelationalPathBase {

    private static final long serialVersionUID = -1273644065;

    public static final QMember member = new QMember("member");

    public final NumberPath createdBy = createNumber("createdBy", Long.class);

    public final DateTimePath createdTime = createDateTime("createdTime", java.sql.Timestamp.class);

    public final NumberPath id = createNumber("id", Long.class);

    public final NumberPath kindId = createNumber("kindId", Integer.class);

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

    public final NumberPath revision = createNumber("revision", Integer.class);

    public final NumberPath staffId = createNumber("staffId", Long.class);

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

    public final NumberPath status = createNumber("status", Integer.class);

    public final NumberPath updatedBy = createNumber("updatedBy", Long.class);

    public final DateTimePath updatedTime = createDateTime("updatedTime", java.sql.Timestamp.class);

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

    public QMember(String variable) {
        super(Member.class, forVariable(variable), "", "member");
        addMetadata();
    }

    public QMember(String variable, String schema, String table) {
        super(Member.class, forVariable(variable), schema, table);
        addMetadata();
    }

    public QMember(String variable, String schema) {
        super(Member.class, forVariable(variable), schema, "member");
        addMetadata();
    }

    public QMember(Path path) {
        super(path.getType(), path.getMetadata(), "", "member");
        addMetadata();
    }

    public QMember(PathMetadata metadata) {
        super(Member.class, metadata, "", "member");
        addMetadata();
    }

    public void addMetadata() {
        addMetadata(createdBy, ColumnMetadata.named("created_by").withIndex(0).ofType(Types.BIGINT).withSize(19));
        addMetadata(createdTime, ColumnMetadata.named("created_time").withIndex(0).ofType(Types.TIMESTAMP).withSize(29));
        addMetadata(id, ColumnMetadata.named("id").withIndex(0).ofType(Types.BIGINT).withSize(19).notNull());
        addMetadata(kindId, ColumnMetadata.named("kind_id").withIndex(0).ofType(Types.INTEGER).withSize(10));
        addMetadata(memberName, ColumnMetadata.named("member_name").withIndex(0).ofType(Types.VARCHAR).withSize(128));
        addMetadata(revision, ColumnMetadata.named("revision").withIndex(0).ofType(Types.INTEGER).withSize(10));
        addMetadata(staffId, ColumnMetadata.named("staff_id").withIndex(0).ofType(Types.BIGINT).withSize(19));
        addMetadata(staffName, ColumnMetadata.named("staff_name").withIndex(0).ofType(Types.VARCHAR).withSize(32));
        addMetadata(status, ColumnMetadata.named("status").withIndex(0).ofType(Types.INTEGER).withSize(10));
        addMetadata(updatedBy, ColumnMetadata.named("updated_by").withIndex(0).ofType(Types.BIGINT).withSize(19));
        addMetadata(updatedTime, ColumnMetadata.named("updated_time").withIndex(0).ofType(Types.TIMESTAMP).withSize(29));
        addMetadata(verifyStatus, ColumnMetadata.named("verify_status").withIndex(0).ofType(Types.VARCHAR).withSize(32));
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy