派生自 projectDept/qhighschool

胡仁荣
2022-10-31 fe7381d6e8ec1f427408de0297ac7f41533202f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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;
 
 
/**
 * QMyChapterProgressVId is a Querydsl query type for MyChapterProgressVId
 */
@Generated("com.querydsl.codegen.EmbeddableSerializer")
public class QMyChapterProgressVId extends BeanPath<MyChapterProgressVId> {
 
    private static final long serialVersionUID = -1910272098L;
 
    public static final QMyChapterProgressVId myChapterProgressVId = new QMyChapterProgressVId("myChapterProgressVId");
 
    public final StringPath chapterId = createString("chapterId");
 
    public final StringPath classId = createString("classId");
 
    public final StringPath subjectId = createString("subjectId");
 
    public final StringPath userId = createString("userId");
 
    public QMyChapterProgressVId(String variable) {
        super(MyChapterProgressVId.class, forVariable(variable));
    }
 
    public QMyChapterProgressVId(Path<? extends MyChapterProgressVId> path) {
        super(path.getType(), path.getMetadata());
    }
 
    public QMyChapterProgressVId(PathMetadata metadata) {
        super(MyChapterProgressVId.class, metadata);
    }
 
}