package com.qxueyou.scc.teach.subject.model.view; 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; /** * QMyChapterProgressV is a Querydsl query type for MyChapterProgressV */ @Generated("com.querydsl.codegen.EntitySerializer") public class QMyChapterProgressV extends EntityPathBase { private static final long serialVersionUID = -1324891357L; private static final PathInits INITS = PathInits.DIRECT2; public static final QMyChapterProgressV myChapterProgressV = new QMyChapterProgressV("myChapterProgressV"); public final StringPath chapterName = createString("chapterName"); public final QMyChapterProgressVId id; public final NumberPath percent = createNumber("percent", java.math.BigDecimal.class); public final NumberPath progressValue = createNumber("progressValue", java.math.BigDecimal.class); public final StringPath subjectName = createString("subjectName"); public final StringPath userName = createString("userName"); public QMyChapterProgressV(String variable) { this(MyChapterProgressV.class, forVariable(variable), INITS); } public QMyChapterProgressV(Path path) { this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); } public QMyChapterProgressV(PathMetadata metadata) { this(metadata, PathInits.getFor(metadata, INITS)); } public QMyChapterProgressV(PathMetadata metadata, PathInits inits) { this(MyChapterProgressV.class, metadata, inits); } public QMyChapterProgressV(Class type, PathMetadata metadata, PathInits inits) { super(type, metadata, inits); this.id = inits.isInitialized("id") ? new QMyChapterProgressVId(forProperty("id")) : null; } }