-
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 #60 from ssu-student-union/feat/50-post
[feat] #50 자료집 리스트 api 구현
- Loading branch information
Showing
18 changed files
with
418 additions
and
36 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
src/main/generated/ussum/homepage/infra/jpa/comment/entity/QPostReplyCommentEntity.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,66 @@ | ||
package ussum.homepage.infra.jpa.comment.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; | ||
|
||
|
||
/** | ||
* QPostReplyCommentEntity is a Querydsl query type for PostReplyCommentEntity | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QPostReplyCommentEntity extends EntityPathBase<PostReplyCommentEntity> { | ||
|
||
private static final long serialVersionUID = 2085460932L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QPostReplyCommentEntity postReplyCommentEntity = new QPostReplyCommentEntity("postReplyCommentEntity"); | ||
|
||
public final ussum.homepage.infra.jpa.QBaseEntity _super = new ussum.homepage.infra.jpa.QBaseEntity(this); | ||
|
||
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); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> lastEditedAt = createDateTime("lastEditedAt", java.time.LocalDateTime.class); | ||
|
||
public final QPostCommentEntity postCommentEntity; | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt; | ||
|
||
public final ussum.homepage.infra.jpa.user.entity.QUserEntity userEntity; | ||
|
||
public QPostReplyCommentEntity(String variable) { | ||
this(PostReplyCommentEntity.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QPostReplyCommentEntity(Path<? extends PostReplyCommentEntity> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QPostReplyCommentEntity(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QPostReplyCommentEntity(PathMetadata metadata, PathInits inits) { | ||
this(PostReplyCommentEntity.class, metadata, inits); | ||
} | ||
|
||
public QPostReplyCommentEntity(Class<? extends PostReplyCommentEntity> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.postCommentEntity = inits.isInitialized("postCommentEntity") ? new QPostCommentEntity(forProperty("postCommentEntity"), inits.get("postCommentEntity")) : null; | ||
this.userEntity = inits.isInitialized("userEntity") ? new ussum.homepage.infra.jpa.user.entity.QUserEntity(forProperty("userEntity")) : null; | ||
} | ||
|
||
} | ||
|
49 changes: 49 additions & 0 deletions
49
src/main/generated/ussum/homepage/infra/jpa/group/entity/QGroupEntity.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,49 @@ | ||
package ussum.homepage.infra.jpa.group.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; | ||
|
||
|
||
/** | ||
* QGroupEntity is a Querydsl query type for GroupEntity | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QGroupEntity extends EntityPathBase<GroupEntity> { | ||
|
||
private static final long serialVersionUID = 2011003894L; | ||
|
||
public static final QGroupEntity groupEntity = new QGroupEntity("groupEntity"); | ||
|
||
public final ussum.homepage.infra.jpa.QBaseEntity _super = new ussum.homepage.infra.jpa.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final EnumPath<GroupCode> groupCode = createEnum("groupCode", GroupCode.class); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final StringPath name = createString("name"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt; | ||
|
||
public QGroupEntity(String variable) { | ||
super(GroupEntity.class, forVariable(variable)); | ||
} | ||
|
||
public QGroupEntity(Path<? extends GroupEntity> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QGroupEntity(PathMetadata metadata) { | ||
super(GroupEntity.class, metadata); | ||
} | ||
|
||
} | ||
|
68 changes: 68 additions & 0 deletions
68
src/main/generated/ussum/homepage/infra/jpa/member/entity/QMemberEntity.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 ussum.homepage.infra.jpa.member.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; | ||
|
||
|
||
/** | ||
* QMemberEntity is a Querydsl query type for MemberEntity | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QMemberEntity extends EntityPathBase<MemberEntity> { | ||
|
||
private static final long serialVersionUID = -2110901084L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QMemberEntity memberEntity = new QMemberEntity("memberEntity"); | ||
|
||
public final ussum.homepage.infra.jpa.QBaseEntity _super = new ussum.homepage.infra.jpa.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final ussum.homepage.infra.jpa.group.entity.QGroupEntity groupEntity; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final BooleanPath isAdmin = createBoolean("isAdmin"); | ||
|
||
public final EnumPath<MajorCode> majorCode = createEnum("majorCode", MajorCode.class); | ||
|
||
public final EnumPath<MemberCode> memberCode = createEnum("memberCode", MemberCode.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt; | ||
|
||
public final ussum.homepage.infra.jpa.user.entity.QUserEntity userEntity; | ||
|
||
public QMemberEntity(String variable) { | ||
this(MemberEntity.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QMemberEntity(Path<? extends MemberEntity> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QMemberEntity(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QMemberEntity(PathMetadata metadata, PathInits inits) { | ||
this(MemberEntity.class, metadata, inits); | ||
} | ||
|
||
public QMemberEntity(Class<? extends MemberEntity> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.groupEntity = inits.isInitialized("groupEntity") ? new ussum.homepage.infra.jpa.group.entity.QGroupEntity(forProperty("groupEntity")) : null; | ||
this.userEntity = inits.isInitialized("userEntity") ? new ussum.homepage.infra.jpa.user.entity.QUserEntity(forProperty("userEntity")) : 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
56 changes: 56 additions & 0 deletions
56
...n/generated/ussum/homepage/infra/jpa/reaction/entity/QPostReplyCommentReactionEntity.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,56 @@ | ||
package ussum.homepage.infra.jpa.reaction.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; | ||
|
||
|
||
/** | ||
* QPostReplyCommentReactionEntity is a Querydsl query type for PostReplyCommentReactionEntity | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QPostReplyCommentReactionEntity extends EntityPathBase<PostReplyCommentReactionEntity> { | ||
|
||
private static final long serialVersionUID = -139667017L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QPostReplyCommentReactionEntity postReplyCommentReactionEntity = new QPostReplyCommentReactionEntity("postReplyCommentReactionEntity"); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final ussum.homepage.infra.jpa.comment.entity.QPostReplyCommentEntity postReplyCommentEntity; | ||
|
||
public final EnumPath<ussum.homepage.infra.jpa.postlike.entity.Reaction> reaction = createEnum("reaction", ussum.homepage.infra.jpa.postlike.entity.Reaction.class); | ||
|
||
public final ussum.homepage.infra.jpa.user.entity.QUserEntity userEntity; | ||
|
||
public QPostReplyCommentReactionEntity(String variable) { | ||
this(PostReplyCommentReactionEntity.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QPostReplyCommentReactionEntity(Path<? extends PostReplyCommentReactionEntity> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QPostReplyCommentReactionEntity(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QPostReplyCommentReactionEntity(PathMetadata metadata, PathInits inits) { | ||
this(PostReplyCommentReactionEntity.class, metadata, inits); | ||
} | ||
|
||
public QPostReplyCommentReactionEntity(Class<? extends PostReplyCommentReactionEntity> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.postReplyCommentEntity = inits.isInitialized("postReplyCommentEntity") ? new ussum.homepage.infra.jpa.comment.entity.QPostReplyCommentEntity(forProperty("postReplyCommentEntity"), inits.get("postReplyCommentEntity")) : null; | ||
this.userEntity = inits.isInitialized("userEntity") ? new ussum.homepage.infra.jpa.user.entity.QUserEntity(forProperty("userEntity")) : 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.