forked from chaniii999/RE_BOOK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2. @post ("/verify-auth-code") 삭제
- Loading branch information
Showing
4 changed files
with
222 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package com.re_book.entity; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QBook is a Querydsl query type for Book | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QBook extends EntityPathBase<Book> { | ||
|
||
private static final long serialVersionUID = -1354353842L; | ||
|
||
public static final QBook book = new QBook("book"); | ||
|
||
public final StringPath coverImage = createString("coverImage"); | ||
|
||
public final StringPath id = createString("id"); | ||
|
||
public final NumberPath<Integer> likeCount = createNumber("likeCount", Integer.class); | ||
|
||
public final StringPath name = createString("name"); | ||
|
||
public final StringPath pub = createString("pub"); | ||
|
||
public final NumberPath<Double> rating = createNumber("rating", Double.class); | ||
|
||
public final NumberPath<Integer> reviewCount = createNumber("reviewCount", Integer.class); | ||
|
||
public final ListPath<Review, QReview> reviews = this.<Review, QReview>createList("reviews", Review.class, QReview.class, PathInits.DIRECT2); | ||
|
||
public final StringPath writer = createString("writer"); | ||
|
||
public final NumberPath<Integer> year = createNumber("year", Integer.class); | ||
|
||
public QBook(String variable) { | ||
super(Book.class, forVariable(variable)); | ||
} | ||
|
||
public QBook(Path<? extends Book> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QBook(PathMetadata metadata) { | ||
super(Book.class, metadata); | ||
} | ||
|
||
} | ||
|
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,54 @@ | ||
package com.re_book.entity; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QBookLike is a Querydsl query type for BookLike | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QBookLike extends EntityPathBase<BookLike> { | ||
|
||
private static final long serialVersionUID = 1868824581L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QBookLike bookLike = new QBookLike("bookLike"); | ||
|
||
public final QBook book; | ||
|
||
public final StringPath id = createString("id"); | ||
|
||
public final QMember member; | ||
|
||
public QBookLike(String variable) { | ||
this(BookLike.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QBookLike(Path<? extends BookLike> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QBookLike(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QBookLike(PathMetadata metadata, PathInits inits) { | ||
this(BookLike.class, metadata, inits); | ||
} | ||
|
||
public QBookLike(Class<? extends BookLike> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.book = inits.isInitialized("book") ? new QBook(forProperty("book")) : null; | ||
this.member = inits.isInitialized("member") ? new QMember(forProperty("member")) : 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package com.re_book.entity; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QMember is a Querydsl query type for Member | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QMember extends EntityPathBase<Member> { | ||
|
||
private static final long serialVersionUID = 146668991L; | ||
|
||
public static final QMember member = new QMember("member1"); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> createdAt = createDateTime("createdAt", java.time.LocalDateTime.class); | ||
|
||
public final StringPath email = createString("email"); | ||
|
||
public final StringPath id = createString("id"); | ||
|
||
public final ListPath<Book, QBook> likedBooks = this.<Book, QBook>createList("likedBooks", Book.class, QBook.class, PathInits.DIRECT2); | ||
|
||
public final StringPath name = createString("name"); | ||
|
||
public final StringPath password = createString("password"); | ||
|
||
public final ListPath<Review, QReview> reviews = this.<Review, QReview>createList("reviews", Review.class, QReview.class, PathInits.DIRECT2); | ||
|
||
public final EnumPath<com.re_book.user.entity.Role> role = createEnum("role", com.re_book.user.entity.Role.class); | ||
|
||
public QMember(String variable) { | ||
super(Member.class, forVariable(variable)); | ||
} | ||
|
||
public QMember(Path<? extends Member> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QMember(PathMetadata metadata) { | ||
super(Member.class, metadata); | ||
} | ||
|
||
} | ||
|
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 com.re_book.entity; | ||
|
||
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 = 290089597L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QReview review = new QReview("review"); | ||
|
||
public final QBook book; | ||
|
||
public final StringPath content = createString("content"); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> createdDate = createDateTime("createdDate", java.time.LocalDateTime.class); | ||
|
||
public final StringPath id = createString("id"); | ||
|
||
public final QMember member; | ||
|
||
public final NumberPath<Integer> rating = createNumber("rating", Integer.class); | ||
|
||
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.book = inits.isInitialized("book") ? new QBook(forProperty("book")) : null; | ||
this.member = inits.isInitialized("member") ? new QMember(forProperty("member")) : null; | ||
} | ||
|
||
} | ||
|