-
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.
- Loading branch information
Showing
12 changed files
with
669 additions
and
1 deletion.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
src/main/generated/com/oven/server/api/chat/domain/QChatroom.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,68 @@ | ||
package com.oven.server.api.chat.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; | ||
|
||
|
||
/** | ||
* QChatroom is a Querydsl query type for Chatroom | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QChatroom extends EntityPathBase<Chatroom> { | ||
|
||
private static final long serialVersionUID = 599042677L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QChatroom chatroom = new QChatroom("chatroom"); | ||
|
||
public final com.oven.server.common.QBaseEntity _super = new com.oven.server.common.QBaseEntity(this); | ||
|
||
public final NumberPath<Integer> count = createNumber("count", Integer.class); | ||
|
||
//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 com.oven.server.api.work.domain.QProvider provider; | ||
|
||
public final com.oven.server.api.user.domain.QUser roomAdmin; | ||
|
||
public final StringPath title = createString("title"); | ||
|
||
public final NumberPath<Integer> wholeNum = createNumber("wholeNum", Integer.class); | ||
|
||
public QChatroom(String variable) { | ||
this(Chatroom.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QChatroom(Path<? extends Chatroom> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QChatroom(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QChatroom(PathMetadata metadata, PathInits inits) { | ||
this(Chatroom.class, metadata, inits); | ||
} | ||
|
||
public QChatroom(Class<? extends Chatroom> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.provider = inits.isInitialized("provider") ? new com.oven.server.api.work.domain.QProvider(forProperty("provider")) : null; | ||
this.roomAdmin = inits.isInitialized("roomAdmin") ? new com.oven.server.api.user.domain.QUser(forProperty("roomAdmin")) : null; | ||
} | ||
|
||
} | ||
|
62 changes: 62 additions & 0 deletions
62
src/main/generated/com/oven/server/api/chat/domain/QEntrance.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.chat.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; | ||
|
||
|
||
/** | ||
* QEntrance is a Querydsl query type for Entrance | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QEntrance extends EntityPathBase<Entrance> { | ||
|
||
private static final long serialVersionUID = 1361349880L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QEntrance entrance = new QEntrance("entrance"); | ||
|
||
public final com.oven.server.common.QBaseEntity _super = new com.oven.server.common.QBaseEntity(this); | ||
|
||
public final QChatroom chatroom; | ||
|
||
//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 com.oven.server.api.user.domain.QUser user; | ||
|
||
public QEntrance(String variable) { | ||
this(Entrance.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QEntrance(Path<? extends Entrance> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QEntrance(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QEntrance(PathMetadata metadata, PathInits inits) { | ||
this(Entrance.class, metadata, inits); | ||
} | ||
|
||
public QEntrance(Class<? extends Entrance> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.chatroom = inits.isInitialized("chatroom") ? new QChatroom(forProperty("chatroom"), inits.get("chatroom")) : null; | ||
this.user = inits.isInitialized("user") ? new com.oven.server.api.user.domain.QUser(forProperty("user")) : null; | ||
} | ||
|
||
} | ||
|
64 changes: 64 additions & 0 deletions
64
src/main/generated/com/oven/server/api/chat/domain/QMessage.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.chat.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; | ||
|
||
|
||
/** | ||
* QMessage is a Querydsl query type for Message | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QMessage extends EntityPathBase<Message> { | ||
|
||
private static final long serialVersionUID = -1704546939L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QMessage message = new QMessage("message"); | ||
|
||
public final com.oven.server.common.QBaseEntity _super = new com.oven.server.common.QBaseEntity(this); | ||
|
||
public final QChatroom chatroom; | ||
|
||
public final StringPath content = createString("content"); | ||
|
||
//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 com.oven.server.api.user.domain.QUser sender; | ||
|
||
public QMessage(String variable) { | ||
this(Message.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QMessage(Path<? extends Message> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QMessage(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QMessage(PathMetadata metadata, PathInits inits) { | ||
this(Message.class, metadata, inits); | ||
} | ||
|
||
public QMessage(Class<? extends Message> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.chatroom = inits.isInitialized("chatroom") ? new QChatroom(forProperty("chatroom"), inits.get("chatroom")) : null; | ||
this.sender = inits.isInitialized("sender") ? new com.oven.server.api.user.domain.QUser(forProperty("sender")) : null; | ||
} | ||
|
||
} | ||
|
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); | ||
} | ||
|
||
} | ||
|
Oops, something went wrong.