|
| 1 | +package com.example.FixLog.domain.fork; |
| 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 | + * QFork is a Querydsl query type for Fork |
| 15 | + */ |
| 16 | +@Generated("com.querydsl.codegen.DefaultEntitySerializer") |
| 17 | +public class QFork extends EntityPathBase<Fork> { |
| 18 | + |
| 19 | + private static final long serialVersionUID = 1327242738L; |
| 20 | + |
| 21 | + private static final PathInits INITS = PathInits.DIRECT2; |
| 22 | + |
| 23 | + public static final QFork fork = new QFork("fork"); |
| 24 | + |
| 25 | + public final com.example.FixLog.domain.post.QPost forkedPostId; |
| 26 | + |
| 27 | + public final NumberPath<Long> forkId = createNumber("forkId", Long.class); |
| 28 | + |
| 29 | + public final com.example.FixLog.domain.post.QPost originalPostId; |
| 30 | + |
| 31 | + public final com.example.FixLog.domain.member.QMember userId; |
| 32 | + |
| 33 | + public QFork(String variable) { |
| 34 | + this(Fork.class, forVariable(variable), INITS); |
| 35 | + } |
| 36 | + |
| 37 | + public QFork(Path<? extends Fork> path) { |
| 38 | + this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); |
| 39 | + } |
| 40 | + |
| 41 | + public QFork(PathMetadata metadata) { |
| 42 | + this(metadata, PathInits.getFor(metadata, INITS)); |
| 43 | + } |
| 44 | + |
| 45 | + public QFork(PathMetadata metadata, PathInits inits) { |
| 46 | + this(Fork.class, metadata, inits); |
| 47 | + } |
| 48 | + |
| 49 | + public QFork(Class<? extends Fork> type, PathMetadata metadata, PathInits inits) { |
| 50 | + super(type, metadata, inits); |
| 51 | + this.forkedPostId = inits.isInitialized("forkedPostId") ? new com.example.FixLog.domain.post.QPost(forProperty("forkedPostId"), inits.get("forkedPostId")) : null; |
| 52 | + this.originalPostId = inits.isInitialized("originalPostId") ? new com.example.FixLog.domain.post.QPost(forProperty("originalPostId"), inits.get("originalPostId")) : null; |
| 53 | + this.userId = inits.isInitialized("userId") ? new com.example.FixLog.domain.member.QMember(forProperty("userId"), inits.get("userId")) : null; |
| 54 | + } |
| 55 | + |
| 56 | +} |
| 57 | + |
0 commit comments