-
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.
Merge pull request #11 from oven-2023/recommendation
fix flask service
- Loading branch information
Showing
10 changed files
with
493 additions
and
10 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
src/main/generated/com/oven/server/api/user/domain/QInterestingWork.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,62 @@ | ||
package com.oven.server.api.user.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; | ||
|
||
|
||
/** | ||
* QInterestingWork is a Querydsl query type for InterestingWork | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QInterestingWork extends EntityPathBase<InterestingWork> { | ||
|
||
private static final long serialVersionUID = -129692332L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QInterestingWork interestingWork = new QInterestingWork("interestingWork"); | ||
|
||
public final com.oven.server.common.QBaseEntity _super = new com.oven.server.common.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedAt = _super.modifiedAt; | ||
|
||
public final QUser user; | ||
|
||
public final com.oven.server.api.work.domain.QWork work; | ||
|
||
public QInterestingWork(String variable) { | ||
this(InterestingWork.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QInterestingWork(Path<? extends InterestingWork> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QInterestingWork(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QInterestingWork(PathMetadata metadata, PathInits inits) { | ||
this(InterestingWork.class, metadata, inits); | ||
} | ||
|
||
public QInterestingWork(Class<? extends InterestingWork> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.user = inits.isInitialized("user") ? new QUser(forProperty("user")) : null; | ||
this.work = inits.isInitialized("work") ? new com.oven.server.api.work.domain.QWork(forProperty("work"), inits.get("work")) : null; | ||
} | ||
|
||
} | ||
|
64 changes: 64 additions & 0 deletions
64
src/main/generated/com/oven/server/api/user/domain/QRatingWork.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,64 @@ | ||
package com.oven.server.api.user.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; | ||
|
||
|
||
/** | ||
* QRatingWork is a Querydsl query type for RatingWork | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QRatingWork extends EntityPathBase<RatingWork> { | ||
|
||
private static final long serialVersionUID = -1219391037L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QRatingWork ratingWork = new QRatingWork("ratingWork"); | ||
|
||
public final com.oven.server.common.QBaseEntity _super = new com.oven.server.common.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedAt = _super.modifiedAt; | ||
|
||
public final NumberPath<Float> rating = createNumber("rating", Float.class); | ||
|
||
public final QUser user; | ||
|
||
public final com.oven.server.api.work.domain.QWork work; | ||
|
||
public QRatingWork(String variable) { | ||
this(RatingWork.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QRatingWork(Path<? extends RatingWork> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QRatingWork(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QRatingWork(PathMetadata metadata, PathInits inits) { | ||
this(RatingWork.class, metadata, inits); | ||
} | ||
|
||
public QRatingWork(Class<? extends RatingWork> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.user = inits.isInitialized("user") ? new QUser(forProperty("user")) : null; | ||
this.work = inits.isInitialized("work") ? new com.oven.server.api.work.domain.QWork(forProperty("work"), inits.get("work")) : null; | ||
} | ||
|
||
} | ||
|
51 changes: 51 additions & 0 deletions
51
src/main/generated/com/oven/server/api/user/domain/QUser.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,51 @@ | ||
package com.oven.server.api.user.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; | ||
|
||
|
||
/** | ||
* QUser is a Querydsl query type for User | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QUser extends EntityPathBase<User> { | ||
|
||
private static final long serialVersionUID = 631284480L; | ||
|
||
public static final QUser user = new QUser("user"); | ||
|
||
public final com.oven.server.common.QBaseEntity _super = new com.oven.server.common.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedAt = _super.modifiedAt; | ||
|
||
public final StringPath nickname = createString("nickname"); | ||
|
||
public final StringPath password = createString("password"); | ||
|
||
public final StringPath username = createString("username"); | ||
|
||
public QUser(String variable) { | ||
super(User.class, forVariable(variable)); | ||
} | ||
|
||
public QUser(Path<? extends User> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QUser(PathMetadata metadata) { | ||
super(User.class, metadata); | ||
} | ||
|
||
} | ||
|
77 changes: 77 additions & 0 deletions
77
src/main/generated/com/oven/server/api/work/domain/QGenre.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,77 @@ | ||
package com.oven.server.api.work.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; | ||
|
||
|
||
/** | ||
* QGenre is a Querydsl query type for Genre | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer") | ||
public class QGenre extends BeanPath<Genre> { | ||
|
||
private static final long serialVersionUID = 197681000L; | ||
|
||
public static final QGenre genre = new QGenre("genre"); | ||
|
||
public final BooleanPath action = createBoolean("action"); | ||
|
||
public final BooleanPath adult = createBoolean("adult"); | ||
|
||
public final BooleanPath adventure = createBoolean("adventure"); | ||
|
||
public final BooleanPath animation = createBoolean("animation"); | ||
|
||
public final BooleanPath comedy = createBoolean("comedy"); | ||
|
||
public final BooleanPath criminal = createBoolean("criminal"); | ||
|
||
public final BooleanPath documentary = createBoolean("documentary"); | ||
|
||
public final BooleanPath drama = createBoolean("drama"); | ||
|
||
public final BooleanPath family = createBoolean("family"); | ||
|
||
public final BooleanPath fantasy = createBoolean("fantasy"); | ||
|
||
public final BooleanPath horror = createBoolean("horror"); | ||
|
||
public final BooleanPath music = createBoolean("music"); | ||
|
||
public final BooleanPath musical = createBoolean("musical"); | ||
|
||
public final BooleanPath mystery = createBoolean("mystery"); | ||
|
||
public final BooleanPath performance = createBoolean("performance"); | ||
|
||
public final BooleanPath romance = createBoolean("romance"); | ||
|
||
public final BooleanPath SF = createBoolean("SF"); | ||
|
||
public final BooleanPath thriller = createBoolean("thriller"); | ||
|
||
public final BooleanPath variety = createBoolean("variety"); | ||
|
||
public final BooleanPath war = createBoolean("war"); | ||
|
||
public final BooleanPath western = createBoolean("western"); | ||
|
||
public QGenre(String variable) { | ||
super(Genre.class, forVariable(variable)); | ||
} | ||
|
||
public QGenre(Path<? extends Genre> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QGenre(PathMetadata metadata) { | ||
super(Genre.class, metadata); | ||
} | ||
|
||
} | ||
|
42 changes: 42 additions & 0 deletions
42
src/main/generated/com/oven/server/api/work/domain/QProvider.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,42 @@ | ||
package com.oven.server.api.work.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; | ||
|
||
|
||
/** | ||
* QProvider is a Querydsl query type for Provider | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QProvider extends EntityPathBase<Provider> { | ||
|
||
private static final long serialVersionUID = -2094880276L; | ||
|
||
public static final QProvider provider = new QProvider("provider"); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final StringPath name = createString("name"); | ||
|
||
public final ListPath<WorkProvider, QWorkProvider> workList = this.<WorkProvider, QWorkProvider>createList("workList", WorkProvider.class, QWorkProvider.class, PathInits.DIRECT2); | ||
|
||
public QProvider(String variable) { | ||
super(Provider.class, forVariable(variable)); | ||
} | ||
|
||
public QProvider(Path<? extends Provider> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QProvider(PathMetadata metadata) { | ||
super(Provider.class, metadata); | ||
} | ||
|
||
} | ||
|
77 changes: 77 additions & 0 deletions
77
src/main/generated/com/oven/server/api/work/domain/QWork.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,77 @@ | ||
package com.oven.server.api.work.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; | ||
|
||
|
||
/** | ||
* QWork is a Querydsl query type for Work | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QWork extends EntityPathBase<Work> { | ||
|
||
private static final long serialVersionUID = 1946525836L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QWork work = new QWork("work"); | ||
|
||
public final com.oven.server.common.QBaseEntity _super = new com.oven.server.common.QBaseEntity(this); | ||
|
||
public final StringPath actor = createString("actor"); | ||
|
||
public final StringPath ageRating = createString("ageRating"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final StringPath director = createString("director"); | ||
|
||
public final QGenre genre; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedAt = _super.modifiedAt; | ||
|
||
public final StringPath poster = createString("poster"); | ||
|
||
public final ListPath<WorkProvider, QWorkProvider> providerList = this.<WorkProvider, QWorkProvider>createList("providerList", WorkProvider.class, QWorkProvider.class, PathInits.DIRECT2); | ||
|
||
public final StringPath summary = createString("summary"); | ||
|
||
public final StringPath titleEng = createString("titleEng"); | ||
|
||
public final StringPath titleKr = createString("titleKr"); | ||
|
||
public final NumberPath<Integer> year = createNumber("year", Integer.class); | ||
|
||
public QWork(String variable) { | ||
this(Work.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QWork(Path<? extends Work> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QWork(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QWork(PathMetadata metadata, PathInits inits) { | ||
this(Work.class, metadata, inits); | ||
} | ||
|
||
public QWork(Class<? extends Work> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.genre = inits.isInitialized("genre") ? new QGenre(forProperty("genre")) : null; | ||
} | ||
|
||
} | ||
|
Oops, something went wrong.