派生自 projectDept/qhighschool

胡仁荣
2022-11-03 efb51d5e1f6625ac528bdedb572435dfd788c603
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.qxueyou.scc.school.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;
 
 
/**
 * QSchChapter is a Querydsl query type for SchChapter
 */
@Generated("com.querydsl.codegen.EntitySerializer")
public class QSchChapter extends EntityPathBase<SchChapter> {
 
    private static final long serialVersionUID = -813997466L;
 
    private static final PathInits INITS = PathInits.DIRECT2;
 
    public static final QSchChapter schChapter = new QSchChapter("schChapter");
 
    public final StringPath chapterId = createString("chapterId");
 
    public final ListPath<SchChapter, QSchChapter> childs = this.<SchChapter, QSchChapter>createList("childs", SchChapter.class, QSchChapter.class, PathInits.DIRECT2);
 
    public final StringPath classId = createString("classId");
 
    public final QSchClassSubject classSubject;
 
    public final StringPath code = createString("code");
 
    public final StringPath collegeCourseId = createString("collegeCourseId");
 
    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 StringPath name = createString("name");
 
    public final NumberPath<Integer> orderNum = createNumber("orderNum", Integer.class);
 
    public final StringPath orgChapterId = createString("orgChapterId");
 
    public final StringPath orgId = createString("orgId");
 
    public final StringPath origChapterId = createString("origChapterId");
 
    public final QSchChapter parent;
 
    public final StringPath parentChapterId = createString("parentChapterId");
 
    public final com.qxueyou.scc.teach.subject.model.QSubject subject;
 
    public final StringPath subjectId = createString("subjectId");
 
    public final StringPath topOrgId = createString("topOrgId");
 
    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 QSchChapter(String variable) {
        this(SchChapter.class, forVariable(variable), INITS);
    }
 
    public QSchChapter(Path<? extends SchChapter> path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }
 
    public QSchChapter(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }
 
    public QSchChapter(PathMetadata metadata, PathInits inits) {
        this(SchChapter.class, metadata, inits);
    }
 
    public QSchChapter(Class<? extends SchChapter> type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.classSubject = inits.isInitialized("classSubject") ? new QSchClassSubject(forProperty("classSubject")) : null;
        this.parent = inits.isInitialized("parent") ? new QSchChapter(forProperty("parent"), inits.get("parent")) : null;
        this.subject = inits.isInitialized("subject") ? new com.qxueyou.scc.teach.subject.model.QSubject(forProperty("subject")) : null;
    }
 
}