派生自 projectDept/qhighschool

Administrator
2022-11-29 8c99e2d8b6c1e0d9cde6abbe80b4df75be19f6d1
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.qxueyou.scc.exam.model;
 
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;
 
 
/**
 * QExamPaperInfo is a Querydsl query type for ExamPaperInfo
 */
@Generated("com.querydsl.codegen.EntitySerializer")
public class QExamPaperInfo extends EntityPathBase<ExamPaperInfo> {
 
    private static final long serialVersionUID = -1224447819L;
 
    public static final QExamPaperInfo examPaperInfo = new QExamPaperInfo("examPaperInfo");
 
    public final StringPath createId = createString("createId");
 
    public final DateTimePath<java.util.Date> createTime = createDateTime("createTime", java.util.Date.class);
 
    public final StringPath creator = createString("creator");
 
    public final BooleanPath deleteFlag = createBoolean("deleteFlag");
 
    public final NumberPath<Short> difficultLevel = createNumber("difficultLevel", Short.class);
 
    public final StringPath examPaperId = createString("examPaperId");
 
    public final StringPath examPaperName = createString("examPaperName");
 
    public final StringPath groupId = createString("groupId");
 
    public final StringPath orgId = createString("orgId");
 
    public final NumberPath<Short> paperStatus = createNumber("paperStatus", Short.class);
 
    public final ListPath<ExamReExamPaper, QExamReExamPaper> reExamPapers = this.<ExamReExamPaper, QExamReExamPaper>createList("reExamPapers", ExamReExamPaper.class, QExamReExamPaper.class, PathInits.DIRECT2);
 
    public final ListPath<ExamPaperSectionInfo, QExamPaperSectionInfo> sectionInfos = this.<ExamPaperSectionInfo, QExamPaperSectionInfo>createList("sectionInfos", ExamPaperSectionInfo.class, QExamPaperSectionInfo.class, PathInits.DIRECT2);
 
    public final NumberPath<Short> totalScore = createNumber("totalScore", Short.class);
 
    public final StringPath updateId = createString("updateId");
 
    public final DateTimePath<java.util.Date> updateTime = createDateTime("updateTime", java.util.Date.class);
 
    public final StringPath updator = createString("updator");
 
    public QExamPaperInfo(String variable) {
        super(ExamPaperInfo.class, forVariable(variable));
    }
 
    public QExamPaperInfo(Path<? extends ExamPaperInfo> path) {
        super(path.getType(), path.getMetadata());
    }
 
    public QExamPaperInfo(PathMetadata metadata) {
        super(ExamPaperInfo.class, metadata);
    }
 
}