-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
73 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
src/main/generated/com/kusitms/jipbap/order/QOrderDetail.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package com.kusitms.jipbap.order; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QOrderDetail is a Querydsl query type for OrderDetail | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QOrderDetail extends EntityPathBase<OrderDetail> { | ||
|
||
private static final long serialVersionUID = 1871440338L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QOrderDetail orderDetail = new QOrderDetail("orderDetail"); | ||
|
||
public final com.kusitms.jipbap.food.QFood food; | ||
|
||
public final com.kusitms.jipbap.food.QFoodOption foodOption; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final QOrder order; | ||
|
||
public final NumberPath<Long> orderAmount = createNumber("orderAmount", Long.class); | ||
|
||
public final NumberPath<Long> orderCount = createNumber("orderCount", Long.class); | ||
|
||
public QOrderDetail(String variable) { | ||
this(OrderDetail.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QOrderDetail(Path<? extends OrderDetail> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QOrderDetail(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QOrderDetail(PathMetadata metadata, PathInits inits) { | ||
this(OrderDetail.class, metadata, inits); | ||
} | ||
|
||
public QOrderDetail(Class<? extends OrderDetail> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.food = inits.isInitialized("food") ? new com.kusitms.jipbap.food.QFood(forProperty("food"), inits.get("food")) : null; | ||
this.foodOption = inits.isInitialized("foodOption") ? new com.kusitms.jipbap.food.QFoodOption(forProperty("foodOption"), inits.get("foodOption")) : null; | ||
this.order = inits.isInitialized("order") ? new QOrder(forProperty("order"), inits.get("order")) : null; | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters