-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from kakao-tech-campus-2nd-step3/weekly/10
[Develop] 10주차 PR
- Loading branch information
Showing
114 changed files
with
2,979 additions
and
625 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
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
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
45 changes: 45 additions & 0 deletions
45
src/main/generated/team7/inplace/global/exception/QErrorLog.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,45 @@ | ||
package team7.inplace.global.exception; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QErrorLog is a Querydsl query type for ErrorLog | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QErrorLog extends EntityPathBase<ErrorLog> { | ||
|
||
private static final long serialVersionUID = 50351046L; | ||
|
||
public static final QErrorLog errorLog = new QErrorLog("errorLog"); | ||
|
||
public final StringPath errorMessage = createString("errorMessage"); | ||
|
||
public final StringPath errorUrl = createString("errorUrl"); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final BooleanPath isResolved = createBoolean("isResolved"); | ||
|
||
public final StringPath stackTrace = createString("stackTrace"); | ||
|
||
public QErrorLog(String variable) { | ||
super(ErrorLog.class, forVariable(variable)); | ||
} | ||
|
||
public QErrorLog(Path<? extends ErrorLog> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QErrorLog(PathMetadata metadata) { | ||
super(ErrorLog.class, metadata); | ||
} | ||
|
||
} | ||
|
59 changes: 59 additions & 0 deletions
59
src/main/generated/team7/inplace/likedPlace/domain/QLikedPlace.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,59 @@ | ||
package team7.inplace.likedPlace.domain; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QLikedPlace is a Querydsl query type for likedPlace | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QLikedPlace extends EntityPathBase<LikedPlace> { | ||
|
||
private static final long serialVersionUID = 1786130640L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QLikedPlace likedPlace = new QLikedPlace("likedPlace"); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final BooleanPath isLiked = createBoolean("isLiked"); | ||
|
||
public final team7.inplace.place.domain.QPlace place; | ||
|
||
public final team7.inplace.user.domain.QUser user; | ||
|
||
public QLikedPlace(String variable) { | ||
this(LikedPlace.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QLikedPlace(Path<? extends LikedPlace> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QLikedPlace(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QLikedPlace(PathMetadata metadata, PathInits inits) { | ||
this(LikedPlace.class, metadata, inits); | ||
} | ||
|
||
public QLikedPlace(Class<? extends LikedPlace> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.place = inits.isInitialized("place") ? new team7.inplace.place.domain.QPlace( | ||
forProperty("place"), inits.get("place")) : null; | ||
this.user = | ||
inits.isInitialized("user") ? new team7.inplace.user.domain.QUser(forProperty("user")) | ||
: null; | ||
} | ||
|
||
} | ||
|
55 changes: 55 additions & 0 deletions
55
src/main/generated/team7/inplace/oauthToken/domain/QOauthToken.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,55 @@ | ||
package team7.inplace.oauthToken.domain; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QOauthToken is a Querydsl query type for OauthToken | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QOauthToken extends EntityPathBase<OauthToken> { | ||
|
||
private static final long serialVersionUID = -59028672L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QOauthToken oauthToken1 = new QOauthToken("oauthToken1"); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> expiresAt = createDateTime("expiresAt", java.time.LocalDateTime.class); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final StringPath oauthToken = createString("oauthToken"); | ||
|
||
public final team7.inplace.user.domain.QUser user; | ||
|
||
public QOauthToken(String variable) { | ||
this(OauthToken.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QOauthToken(Path<? extends OauthToken> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QOauthToken(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QOauthToken(PathMetadata metadata, PathInits inits) { | ||
this(OauthToken.class, metadata, inits); | ||
} | ||
|
||
public QOauthToken(Class<? extends OauthToken> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.user = inits.isInitialized("user") ? new team7.inplace.user.domain.QUser(forProperty("user")) : 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
60 changes: 60 additions & 0 deletions
60
src/main/generated/team7/inplace/review/domain/QReview.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,60 @@ | ||
package team7.inplace.review.domain; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QReview is a Querydsl query type for Review | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QReview extends EntityPathBase<Review> { | ||
|
||
private static final long serialVersionUID = 978169644L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QReview review = new QReview("review"); | ||
|
||
public final StringPath comment = createString("comment"); | ||
|
||
public final DateTimePath<java.util.Date> createdDate = createDateTime("createdDate", java.util.Date.class); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final BooleanPath isLiked = createBoolean("isLiked"); | ||
|
||
public final team7.inplace.place.domain.QPlace place; | ||
|
||
public final team7.inplace.user.domain.QUser user; | ||
|
||
public QReview(String variable) { | ||
this(Review.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QReview(Path<? extends Review> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QReview(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QReview(PathMetadata metadata, PathInits inits) { | ||
this(Review.class, metadata, inits); | ||
} | ||
|
||
public QReview(Class<? extends Review> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.place = inits.isInitialized("place") ? new team7.inplace.place.domain.QPlace(forProperty("place"), inits.get("place")) : null; | ||
this.user = inits.isInitialized("user") ? new team7.inplace.user.domain.QUser(forProperty("user")) : 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
Oops, something went wrong.