|
| 1 | +package com.moplus.moplus_server.client.submit.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 | + |
| 11 | + |
| 12 | +/** |
| 13 | + * QChildProblemSubmit is a Querydsl query type for ChildProblemSubmit |
| 14 | + */ |
| 15 | +@Generated("com.querydsl.codegen.DefaultEntitySerializer") |
| 16 | +public class QChildProblemSubmit extends EntityPathBase<ChildProblemSubmit> { |
| 17 | + |
| 18 | + private static final long serialVersionUID = -1656142683L; |
| 19 | + |
| 20 | + public static final QChildProblemSubmit childProblemSubmit = new QChildProblemSubmit("childProblemSubmit"); |
| 21 | + |
| 22 | + public final com.moplus.moplus_server.global.common.QBaseEntity _super = new com.moplus.moplus_server.global.common.QBaseEntity(this); |
| 23 | + |
| 24 | + public final NumberPath<Long> childProblemId = createNumber("childProblemId", Long.class); |
| 25 | + |
| 26 | + //inherited |
| 27 | + public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; |
| 28 | + |
| 29 | + public final NumberPath<Long> id = createNumber("id", Long.class); |
| 30 | + |
| 31 | + public final NumberPath<Long> memberId = createNumber("memberId", Long.class); |
| 32 | + |
| 33 | + public final NumberPath<Long> publishId = createNumber("publishId", Long.class); |
| 34 | + |
| 35 | + public final EnumPath<ChildProblemSubmitStatus> status = createEnum("status", ChildProblemSubmitStatus.class); |
| 36 | + |
| 37 | + //inherited |
| 38 | + public final DateTimePath<java.time.LocalDateTime> updatedDate = _super.updatedDate; |
| 39 | + |
| 40 | + public QChildProblemSubmit(String variable) { |
| 41 | + super(ChildProblemSubmit.class, forVariable(variable)); |
| 42 | + } |
| 43 | + |
| 44 | + public QChildProblemSubmit(Path<? extends ChildProblemSubmit> path) { |
| 45 | + super(path.getType(), path.getMetadata()); |
| 46 | + } |
| 47 | + |
| 48 | + public QChildProblemSubmit(PathMetadata metadata) { |
| 49 | + super(ChildProblemSubmit.class, metadata); |
| 50 | + } |
| 51 | + |
| 52 | +} |
| 53 | + |
0 commit comments