|
| 1 | +package com.moplus.moplus_server.statistic.Problem.domain; |
| 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 | + * QChildProblemStatistic is a Querydsl query type for ChildProblemStatistic |
| 15 | + */ |
| 16 | +@Generated("com.querydsl.codegen.DefaultEntitySerializer") |
| 17 | +public class QChildProblemStatistic extends EntityPathBase<ChildProblemStatistic> { |
| 18 | + |
| 19 | + private static final long serialVersionUID = 1136828573L; |
| 20 | + |
| 21 | + private static final PathInits INITS = PathInits.DIRECT2; |
| 22 | + |
| 23 | + public static final QChildProblemStatistic childProblemStatistic = new QChildProblemStatistic("childProblemStatistic"); |
| 24 | + |
| 25 | + public final NumberPath<Long> childProblemId = createNumber("childProblemId", Long.class); |
| 26 | + |
| 27 | + public final QCountStatistic countStatistic; |
| 28 | + |
| 29 | + public final NumberPath<Long> id = createNumber("id", Long.class); |
| 30 | + |
| 31 | + public QChildProblemStatistic(String variable) { |
| 32 | + this(ChildProblemStatistic.class, forVariable(variable), INITS); |
| 33 | + } |
| 34 | + |
| 35 | + public QChildProblemStatistic(Path<? extends ChildProblemStatistic> path) { |
| 36 | + this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); |
| 37 | + } |
| 38 | + |
| 39 | + public QChildProblemStatistic(PathMetadata metadata) { |
| 40 | + this(metadata, PathInits.getFor(metadata, INITS)); |
| 41 | + } |
| 42 | + |
| 43 | + public QChildProblemStatistic(PathMetadata metadata, PathInits inits) { |
| 44 | + this(ChildProblemStatistic.class, metadata, inits); |
| 45 | + } |
| 46 | + |
| 47 | + public QChildProblemStatistic(Class<? extends ChildProblemStatistic> type, PathMetadata metadata, PathInits inits) { |
| 48 | + super(type, metadata, inits); |
| 49 | + this.countStatistic = inits.isInitialized("countStatistic") ? new QCountStatistic(forProperty("countStatistic")) : null; |
| 50 | + } |
| 51 | + |
| 52 | +} |
| 53 | + |
0 commit comments