|
| 1 | +package com.moplus.moplus_server.domain.problem.domain.problem; |
| 2 | + |
| 3 | +import static com.querydsl.core.types.PathMetadataFactory.*; |
| 4 | + |
| 5 | +import com.querydsl.core.types.dsl.*; |
| 6 | + |
| 7 | +import com.querydsl.core.types.PathMetadata; |
| 8 | +import javax.annotation.processing.Generated; |
| 9 | +import com.querydsl.core.types.Path; |
| 10 | +import com.querydsl.core.types.dsl.PathInits; |
| 11 | + |
| 12 | + |
| 13 | +/** |
| 14 | + * QProblem is a Querydsl query type for Problem |
| 15 | + */ |
| 16 | +@Generated("com.querydsl.codegen.DefaultEntitySerializer") |
| 17 | +public class QProblem extends EntityPathBase<Problem> { |
| 18 | + |
| 19 | + private static final long serialVersionUID = -1319796686L; |
| 20 | + |
| 21 | + private static final PathInits INITS = PathInits.DIRECT2; |
| 22 | + |
| 23 | + public static final QProblem problem = new QProblem("problem"); |
| 24 | + |
| 25 | + public final com.moplus.moplus_server.global.common.QBaseEntity _super = new com.moplus.moplus_server.global.common.QBaseEntity(this); |
| 26 | + |
| 27 | + public final com.moplus.moplus_server.domain.problem.domain.QAnswer answer; |
| 28 | + |
| 29 | + public final ListPath<com.moplus.moplus_server.domain.problem.domain.childProblem.ChildProblem, com.moplus.moplus_server.domain.problem.domain.childProblem.QChildProblem> childProblems = this.<com.moplus.moplus_server.domain.problem.domain.childProblem.ChildProblem, com.moplus.moplus_server.domain.problem.domain.childProblem.QChildProblem>createList("childProblems", com.moplus.moplus_server.domain.problem.domain.childProblem.ChildProblem.class, com.moplus.moplus_server.domain.problem.domain.childProblem.QChildProblem.class, PathInits.DIRECT2); |
| 30 | + |
| 31 | + public final StringPath comment = createString("comment"); |
| 32 | + |
| 33 | + public final SetPath<Long, NumberPath<Long>> conceptTagIds = this.<Long, NumberPath<Long>>createSet("conceptTagIds", Long.class, NumberPath.class, PathInits.DIRECT2); |
| 34 | + |
| 35 | + //inherited |
| 36 | + public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; |
| 37 | + |
| 38 | + public final QProblemId id; |
| 39 | + |
| 40 | + public final BooleanPath isPublished = createBoolean("isPublished"); |
| 41 | + |
| 42 | + public final BooleanPath isVariation = createBoolean("isVariation"); |
| 43 | + |
| 44 | + public final StringPath mainAnalysisImageUrl = createString("mainAnalysisImageUrl"); |
| 45 | + |
| 46 | + public final StringPath mainProblemImageUrl = createString("mainProblemImageUrl"); |
| 47 | + |
| 48 | + public final NumberPath<Integer> number = createNumber("number", Integer.class); |
| 49 | + |
| 50 | + public final NumberPath<Long> practiceTestId = createNumber("practiceTestId", Long.class); |
| 51 | + |
| 52 | + public final StringPath prescriptionImageUrl = createString("prescriptionImageUrl"); |
| 53 | + |
| 54 | + public final EnumPath<ProblemType> problemType = createEnum("problemType", ProblemType.class); |
| 55 | + |
| 56 | + public final StringPath readingTipImageUrl = createString("readingTipImageUrl"); |
| 57 | + |
| 58 | + public final StringPath seniorTipImageUrl = createString("seniorTipImageUrl"); |
| 59 | + |
| 60 | + //inherited |
| 61 | + public final DateTimePath<java.time.LocalDateTime> updatedDate = _super.updatedDate; |
| 62 | + |
| 63 | + public QProblem(String variable) { |
| 64 | + this(Problem.class, forVariable(variable), INITS); |
| 65 | + } |
| 66 | + |
| 67 | + public QProblem(Path<? extends Problem> path) { |
| 68 | + this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); |
| 69 | + } |
| 70 | + |
| 71 | + public QProblem(PathMetadata metadata) { |
| 72 | + this(metadata, PathInits.getFor(metadata, INITS)); |
| 73 | + } |
| 74 | + |
| 75 | + public QProblem(PathMetadata metadata, PathInits inits) { |
| 76 | + this(Problem.class, metadata, inits); |
| 77 | + } |
| 78 | + |
| 79 | + public QProblem(Class<? extends Problem> type, PathMetadata metadata, PathInits inits) { |
| 80 | + super(type, metadata, inits); |
| 81 | + this.answer = inits.isInitialized("answer") ? new com.moplus.moplus_server.domain.problem.domain.QAnswer(forProperty("answer")) : null; |
| 82 | + this.id = inits.isInitialized("id") ? new QProblemId(forProperty("id")) : null; |
| 83 | + } |
| 84 | + |
| 85 | +} |
| 86 | + |
0 commit comments