-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathQApplication.java
More file actions
76 lines (49 loc) · 3.43 KB
/
QApplication.java
File metadata and controls
76 lines (49 loc) · 3.43 KB
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
package com.example.solidconnection.application.domain;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QApplication is a Querydsl query type for Application
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QApplication extends EntityPathBase<Application> {
private static final long serialVersionUID = -122324166L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QApplication application = new QApplication("application");
public final com.example.solidconnection.university.domain.QUniversityInfoForApply firstChoiceUniversity;
public final QGpa gpa;
public final NumberPath<Long> id = createNumber("id", Long.class);
public final BooleanPath isDelete = createBoolean("isDelete");
public final QLanguageTest languageTest;
public final StringPath nicknameForApply = createString("nicknameForApply");
public final com.example.solidconnection.university.domain.QUniversityInfoForApply secondChoiceUniversity;
public final com.example.solidconnection.siteuser.domain.QSiteUser siteUser;
public final StringPath term = createString("term");
public final com.example.solidconnection.university.domain.QUniversityInfoForApply thirdChoiceUniversity;
public final NumberPath<Integer> updateCount = createNumber("updateCount", Integer.class);
public final EnumPath<com.example.solidconnection.type.VerifyStatus> verifyStatus = createEnum("verifyStatus", com.example.solidconnection.type.VerifyStatus.class);
public QApplication(String variable) {
this(Application.class, forVariable(variable), INITS);
}
public QApplication(Path<? extends Application> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QApplication(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QApplication(PathMetadata metadata, PathInits inits) {
this(Application.class, metadata, inits);
}
public QApplication(Class<? extends Application> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.firstChoiceUniversity = inits.isInitialized("firstChoiceUniversity") ? new com.example.solidconnection.university.domain.QUniversityInfoForApply(forProperty("firstChoiceUniversity"), inits.get("firstChoiceUniversity")) : null;
this.gpa = inits.isInitialized("gpa") ? new QGpa(forProperty("gpa")) : null;
this.languageTest = inits.isInitialized("languageTest") ? new QLanguageTest(forProperty("languageTest")) : null;
this.secondChoiceUniversity = inits.isInitialized("secondChoiceUniversity") ? new com.example.solidconnection.university.domain.QUniversityInfoForApply(forProperty("secondChoiceUniversity"), inits.get("secondChoiceUniversity")) : null;
this.siteUser = inits.isInitialized("siteUser") ? new com.example.solidconnection.siteuser.domain.QSiteUser(forProperty("siteUser")) : null;
this.thirdChoiceUniversity = inits.isInitialized("thirdChoiceUniversity") ? new com.example.solidconnection.university.domain.QUniversityInfoForApply(forProperty("thirdChoiceUniversity"), inits.get("thirdChoiceUniversity")) : null;
}
}