-
Notifications
You must be signed in to change notification settings - Fork 1
feat: 일정찾기 - 키워드로 검색기능 #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ddnjs
wants to merge
7
commits into
dev
Choose a base branch
from
feat-dw-find-schedule
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
39095a7
feat: 일정찾기 - 키워드로 검색기능
ddnjs e1f0c4e
엔티티 충돌 해결
ddnjs 30ee9e0
Q클래스 git ignore 추가
ddnjs 3d4ed75
chore: gradle merge conflict reslove
ddnjs c1ee92b
refactor: jparepository 구조 수정
ddnjs 0310a1c
refactor: jparepository 구조 수정
ddnjs 475f7ac
refactor:Qclass 삭제
ddnjs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
43 changes: 43 additions & 0 deletions
43
src/main/generated/com/catcher/core/domain/entity/QAddress.java
This file contains hidden or 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,43 @@ | ||
| package com.catcher.core.domain.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; | ||
|
|
||
|
|
||
| /** | ||
| * QAddress is a Querydsl query type for Address | ||
| */ | ||
| @Generated("com.querydsl.codegen.DefaultEmbeddableSerializer") | ||
| public class QAddress extends BeanPath<Address> { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이부분 Qxxx 클래스는 컴파일 시점에 생성되기 때문에, gitignore에(src/main/generated/**) 넣어놓고 사용했던거 같아요!
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저도 그렇게 알고 있긴합니다 |
||
|
|
||
| private static final long serialVersionUID = 1419426487L; | ||
|
|
||
| public static final QAddress address = new QAddress("address"); | ||
|
|
||
| public final StringPath areaCode = createString("areaCode"); | ||
|
|
||
| public final StringPath description = createString("description"); | ||
|
|
||
| public final StringPath latitude = createString("latitude"); | ||
|
|
||
| public final StringPath longitude = createString("longitude"); | ||
|
|
||
| public QAddress(String variable) { | ||
| super(Address.class, forVariable(variable)); | ||
| } | ||
|
|
||
| public QAddress(Path<? extends Address> path) { | ||
| super(path.getType(), path.getMetadata()); | ||
| } | ||
|
|
||
| public QAddress(PathMetadata metadata) { | ||
| super(Address.class, metadata); | ||
| } | ||
|
|
||
| } | ||
|
|
||
39 changes: 39 additions & 0 deletions
39
src/main/generated/com/catcher/core/domain/entity/QBaseTimeEntity.java
This file contains hidden or 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,39 @@ | ||
| package com.catcher.core.domain.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; | ||
|
|
||
|
|
||
| /** | ||
| * QBaseTimeEntity is a Querydsl query type for BaseTimeEntity | ||
| */ | ||
| @Generated("com.querydsl.codegen.DefaultSupertypeSerializer") | ||
| public class QBaseTimeEntity extends EntityPathBase<BaseTimeEntity> { | ||
|
|
||
| private static final long serialVersionUID = -388254050L; | ||
|
|
||
| public static final QBaseTimeEntity baseTimeEntity = new QBaseTimeEntity("baseTimeEntity"); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> createdAt = createDateTime("createdAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> updatedAt = createDateTime("updatedAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public QBaseTimeEntity(String variable) { | ||
| super(BaseTimeEntity.class, forVariable(variable)); | ||
| } | ||
|
|
||
| public QBaseTimeEntity(Path<? extends BaseTimeEntity> path) { | ||
| super(path.getType(), path.getMetadata()); | ||
| } | ||
|
|
||
| public QBaseTimeEntity(PathMetadata metadata) { | ||
| super(BaseTimeEntity.class, metadata); | ||
| } | ||
|
|
||
| } | ||
|
|
78 changes: 78 additions & 0 deletions
78
src/main/generated/com/catcher/core/domain/entity/QCatcherItem.java
This file contains hidden or 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,78 @@ | ||
| package com.catcher.core.domain.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; | ||
|
|
||
|
|
||
| /** | ||
| * QCatcherItem is a Querydsl query type for CatcherItem | ||
| */ | ||
| @Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
| public class QCatcherItem extends EntityPathBase<CatcherItem> { | ||
|
|
||
| private static final long serialVersionUID = -1062823650L; | ||
|
|
||
| private static final PathInits INITS = PathInits.DIRECT2; | ||
|
|
||
| public static final QCatcherItem catcherItem = new QCatcherItem("catcherItem"); | ||
|
|
||
| public final QBaseTimeEntity _super = new QBaseTimeEntity(this); | ||
|
|
||
| public final QCategory category; | ||
|
|
||
| //inherited | ||
| public final DateTimePath<java.time.ZonedDateTime> createdAt = _super.createdAt; | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> deletedAt = createDateTime("deletedAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final StringPath description = createString("description"); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> endAt = createDateTime("endAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
|
||
| public final StringPath itemHashValue = createString("itemHashValue"); | ||
|
|
||
| public final QLocation location; | ||
|
|
||
| public final StringPath resourceUrl = createString("resourceUrl"); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> startAt = createDateTime("startAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final StringPath thumbnailUrl = createString("thumbnailUrl"); | ||
|
|
||
| public final StringPath title = createString("title"); | ||
|
|
||
| //inherited | ||
| public final DateTimePath<java.time.ZonedDateTime> updatedAt = _super.updatedAt; | ||
|
|
||
| public QCatcherItem(String variable) { | ||
| this(CatcherItem.class, forVariable(variable), INITS); | ||
| } | ||
|
|
||
| public QCatcherItem(Path<? extends CatcherItem> path) { | ||
| this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
| } | ||
|
|
||
| public QCatcherItem(PathMetadata metadata) { | ||
| this(metadata, PathInits.getFor(metadata, INITS)); | ||
| } | ||
|
|
||
| public QCatcherItem(PathMetadata metadata, PathInits inits) { | ||
| this(CatcherItem.class, metadata, inits); | ||
| } | ||
|
|
||
| public QCatcherItem(Class<? extends CatcherItem> type, PathMetadata metadata, PathInits inits) { | ||
| super(type, metadata, inits); | ||
| this.category = inits.isInitialized("category") ? new QCategory(forProperty("category")) : null; | ||
| this.location = inits.isInitialized("location") ? new QLocation(forProperty("location"), inits.get("location")) : null; | ||
| } | ||
|
|
||
| } | ||
|
|
39 changes: 39 additions & 0 deletions
39
src/main/generated/com/catcher/core/domain/entity/QCategory.java
This file contains hidden or 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,39 @@ | ||
| package com.catcher.core.domain.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; | ||
|
|
||
|
|
||
| /** | ||
| * QCategory is a Querydsl query type for Category | ||
| */ | ||
| @Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
| public class QCategory extends EntityPathBase<Category> { | ||
|
|
||
| private static final long serialVersionUID = -1973193061L; | ||
|
|
||
| public static final QCategory category = new QCategory("category"); | ||
|
|
||
| public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
|
||
| public final StringPath name = createString("name"); | ||
|
|
||
| public QCategory(String variable) { | ||
| super(Category.class, forVariable(variable)); | ||
| } | ||
|
|
||
| public QCategory(Path<? extends Category> path) { | ||
| super(path.getType(), path.getMetadata()); | ||
| } | ||
|
|
||
| public QCategory(PathMetadata metadata) { | ||
| super(Category.class, metadata); | ||
| } | ||
|
|
||
| } | ||
|
|
51 changes: 51 additions & 0 deletions
51
src/main/generated/com/catcher/core/domain/entity/QLocation.java
This file contains hidden or 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.catcher.core.domain.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; | ||
|
|
||
|
|
||
| /** | ||
| * QLocation is a Querydsl query type for Location | ||
| */ | ||
| @Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
| public class QLocation extends EntityPathBase<Location> { | ||
|
|
||
| private static final long serialVersionUID = -122660526L; | ||
|
|
||
| private static final PathInits INITS = PathInits.DIRECT2; | ||
|
|
||
| public static final QLocation location = new QLocation("location"); | ||
|
|
||
| public final QAddress address; | ||
|
|
||
| public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
|
||
| public QLocation(String variable) { | ||
| this(Location.class, forVariable(variable), INITS); | ||
| } | ||
|
|
||
| public QLocation(Path<? extends Location> path) { | ||
| this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
| } | ||
|
|
||
| public QLocation(PathMetadata metadata) { | ||
| this(metadata, PathInits.getFor(metadata, INITS)); | ||
| } | ||
|
|
||
| public QLocation(PathMetadata metadata, PathInits inits) { | ||
| this(Location.class, metadata, inits); | ||
| } | ||
|
|
||
| public QLocation(Class<? extends Location> type, PathMetadata metadata, PathInits inits) { | ||
| super(type, metadata, inits); | ||
| this.address = inits.isInitialized("address") ? new QAddress(forProperty("address")) : null; | ||
| } | ||
|
|
||
| } | ||
|
|
87 changes: 87 additions & 0 deletions
87
src/main/generated/com/catcher/core/domain/entity/QSchedule.java
This file contains hidden or 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,87 @@ | ||
| package com.catcher.core.domain.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; | ||
|
|
||
|
|
||
| /** | ||
| * QSchedule is a Querydsl query type for Schedule | ||
| */ | ||
| @Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
| public class QSchedule extends EntityPathBase<Schedule> { | ||
|
|
||
| private static final long serialVersionUID = 1573342260L; | ||
|
|
||
| private static final PathInits INITS = PathInits.DIRECT2; | ||
|
|
||
| public static final QSchedule schedule = new QSchedule("schedule"); | ||
|
|
||
| public final QBaseTimeEntity _super = new QBaseTimeEntity(this); | ||
|
|
||
| public final NumberPath<Long> budget = createNumber("budget", Long.class); | ||
|
|
||
| //inherited | ||
| public final DateTimePath<java.time.ZonedDateTime> createdAt = _super.createdAt; | ||
|
|
||
| public final StringPath description = createString("description"); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> endAt = createDateTime("endAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
|
||
| public final QLocation location; | ||
|
|
||
| public final StringPath locationDetail = createString("locationDetail"); | ||
|
|
||
| public final NumberPath<Long> participantLimit = createNumber("participantLimit", Long.class); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> participateEndAt = createDateTime("participateEndAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> participateStartAt = createDateTime("participateStartAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final DateTimePath<java.time.ZonedDateTime> startAt = createDateTime("startAt", java.time.ZonedDateTime.class); | ||
|
|
||
| public final EnumPath<com.catcher.core.domain.entity.enums.ScheduleStatus> status = createEnum("status", com.catcher.core.domain.entity.enums.ScheduleStatus.class); | ||
|
|
||
| public final StringPath title = createString("title"); | ||
|
|
||
| //inherited | ||
| public final DateTimePath<java.time.ZonedDateTime> updatedAt = _super.updatedAt; | ||
|
|
||
| public final QUploadFile uploadFile; | ||
|
|
||
| public final QUser user; | ||
|
|
||
| public final NumberPath<Long> viewCount = createNumber("viewCount", Long.class); | ||
|
|
||
| public QSchedule(String variable) { | ||
| this(Schedule.class, forVariable(variable), INITS); | ||
| } | ||
|
|
||
| public QSchedule(Path<? extends Schedule> path) { | ||
| this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
| } | ||
|
|
||
| public QSchedule(PathMetadata metadata) { | ||
| this(metadata, PathInits.getFor(metadata, INITS)); | ||
| } | ||
|
|
||
| public QSchedule(PathMetadata metadata, PathInits inits) { | ||
| this(Schedule.class, metadata, inits); | ||
| } | ||
|
|
||
| public QSchedule(Class<? extends Schedule> type, PathMetadata metadata, PathInits inits) { | ||
| super(type, metadata, inits); | ||
| this.location = inits.isInitialized("location") ? new QLocation(forProperty("location"), inits.get("location")) : null; | ||
| this.uploadFile = inits.isInitialized("uploadFile") ? new QUploadFile(forProperty("uploadFile")) : null; | ||
| this.user = inits.isInitialized("user") ? new QUser(forProperty("user")) : null; | ||
| } | ||
|
|
||
| } | ||
|
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
build.gradle 주석은 사용하지 않는다면 제거 해도 될거같아용!