From 68018d4501f0da7a2438f1eb343d34aef65a45fb Mon Sep 17 00:00:00 2001 From: bum12ark Date: Fri, 18 Mar 2022 15:54:02 +0900 Subject: [PATCH] =?UTF-8?q?fix(store):=20Querydsl=20Q=ED=81=B4=EB=9E=98?= =?UTF-8?q?=EC=8A=A4=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/category/entity/QCategory.java | 71 ---------------- .../favoritestore/entity/QFavoriteStore.java | 67 --------------- .../domain/item/entity/QItem.java | 79 ------------------ .../domain/itemoption/entity/QItemOption.java | 71 ---------------- .../storeservice/domain/map/entity/QMap.java | 51 ------------ .../domain/review/entity/QReview.java | 79 ------------------ .../reviewreply/entity/QReviewReply.java | 53 ------------ .../domain/store/entity/QStore.java | 83 ------------------- .../storeservice/global/entity/QAddress.java | 41 --------- .../global/entity/QBaseEntity.java | 43 ---------- .../storeservice/global/entity/QPhoto.java | 39 --------- 11 files changed, 677 deletions(-) delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/category/entity/QCategory.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/favoritestore/entity/QFavoriteStore.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/item/entity/QItem.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/itemoption/entity/QItemOption.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/map/entity/QMap.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/review/entity/QReview.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/reviewreply/entity/QReviewReply.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/domain/store/entity/QStore.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/global/entity/QAddress.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/global/entity/QBaseEntity.java delete mode 100644 store-service/src/main/generated/com/justpickup/storeservice/global/entity/QPhoto.java diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/category/entity/QCategory.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/category/entity/QCategory.java deleted file mode 100644 index 8cda987..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/category/entity/QCategory.java +++ /dev/null @@ -1,71 +0,0 @@ -package com.justpickup.storeservice.domain.category.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; - - -/** - * QCategory is a Querydsl query type for Category - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QCategory extends EntityPathBase { - - private static final long serialVersionUID = -1430562590L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QCategory category = new QCategory("category"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - public final ListPath items = this.createList("items", com.justpickup.storeservice.domain.item.entity.Item.class, com.justpickup.storeservice.domain.item.entity.QItem.class, PathInits.DIRECT2); - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public final StringPath name = createString("name"); - - public final NumberPath order = createNumber("order", Integer.class); - - public final com.justpickup.storeservice.domain.store.entity.QStore store; - - public QCategory(String variable) { - this(Category.class, forVariable(variable), INITS); - } - - public QCategory(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QCategory(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QCategory(PathMetadata metadata, PathInits inits) { - this(Category.class, metadata, inits); - } - - public QCategory(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.store = inits.isInitialized("store") ? new com.justpickup.storeservice.domain.store.entity.QStore(forProperty("store"), inits.get("store")) : null; - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/favoritestore/entity/QFavoriteStore.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/favoritestore/entity/QFavoriteStore.java deleted file mode 100644 index f39e4fe..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/favoritestore/entity/QFavoriteStore.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.justpickup.storeservice.domain.favoritestore.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; - - -/** - * QFavoriteStore is a Querydsl query type for FavoriteStore - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QFavoriteStore extends EntityPathBase { - - private static final long serialVersionUID = -356764916L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QFavoriteStore favoriteStore = new QFavoriteStore("favoriteStore"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public final com.justpickup.storeservice.domain.store.entity.QStore store; - - public final NumberPath userId = createNumber("userId", Long.class); - - public QFavoriteStore(String variable) { - this(FavoriteStore.class, forVariable(variable), INITS); - } - - public QFavoriteStore(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QFavoriteStore(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QFavoriteStore(PathMetadata metadata, PathInits inits) { - this(FavoriteStore.class, metadata, inits); - } - - public QFavoriteStore(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.store = inits.isInitialized("store") ? new com.justpickup.storeservice.domain.store.entity.QStore(forProperty("store"), inits.get("store")) : null; - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/item/entity/QItem.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/item/entity/QItem.java deleted file mode 100644 index 3004005..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/item/entity/QItem.java +++ /dev/null @@ -1,79 +0,0 @@ -package com.justpickup.storeservice.domain.item.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; - - -/** - * QItem is a Querydsl query type for Item - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QItem extends EntityPathBase { - - private static final long serialVersionUID = -2047337460L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QItem item = new QItem("item"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - public final com.justpickup.storeservice.domain.category.entity.QCategory category; - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - public final ListPath itemOptions = this.createList("itemOptions", com.justpickup.storeservice.domain.itemoption.entity.ItemOption.class, com.justpickup.storeservice.domain.itemoption.entity.QItemOption.class, PathInits.DIRECT2); - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public final StringPath name = createString("name"); - - public final com.justpickup.storeservice.global.entity.QPhoto photo; - - public final NumberPath price = createNumber("price", Long.class); - - public final EnumPath salesYn = createEnum("salesYn", com.justpickup.storeservice.global.entity.Yn.class); - - public final com.justpickup.storeservice.domain.store.entity.QStore store; - - public QItem(String variable) { - this(Item.class, forVariable(variable), INITS); - } - - public QItem(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QItem(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QItem(PathMetadata metadata, PathInits inits) { - this(Item.class, metadata, inits); - } - - public QItem(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.category = inits.isInitialized("category") ? new com.justpickup.storeservice.domain.category.entity.QCategory(forProperty("category"), inits.get("category")) : null; - this.photo = inits.isInitialized("photo") ? new com.justpickup.storeservice.global.entity.QPhoto(forProperty("photo")) : null; - this.store = inits.isInitialized("store") ? new com.justpickup.storeservice.domain.store.entity.QStore(forProperty("store"), inits.get("store")) : null; - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/itemoption/entity/QItemOption.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/itemoption/entity/QItemOption.java deleted file mode 100644 index ab54991..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/itemoption/entity/QItemOption.java +++ /dev/null @@ -1,71 +0,0 @@ -package com.justpickup.storeservice.domain.itemoption.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; - - -/** - * QItemOption is a Querydsl query type for ItemOption - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QItemOption extends EntityPathBase { - - private static final long serialVersionUID = -374806570L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QItemOption itemOption = new QItemOption("itemOption"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - public final com.justpickup.storeservice.domain.item.entity.QItem item; - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public final StringPath name = createString("name"); - - public final EnumPath optionType = createEnum("optionType", OptionType.class); - - public final NumberPath price = createNumber("price", Long.class); - - public QItemOption(String variable) { - this(ItemOption.class, forVariable(variable), INITS); - } - - public QItemOption(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QItemOption(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QItemOption(PathMetadata metadata, PathInits inits) { - this(ItemOption.class, metadata, inits); - } - - public QItemOption(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.item = inits.isInitialized("item") ? new com.justpickup.storeservice.domain.item.entity.QItem(forProperty("item"), inits.get("item")) : null; - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/map/entity/QMap.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/map/entity/QMap.java deleted file mode 100644 index c0c674a..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/map/entity/QMap.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.justpickup.storeservice.domain.map.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; - - -/** - * QMap is a Querydsl query type for Map - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QMap extends EntityPathBase { - - private static final long serialVersionUID = -1253033268L; - - public static final QMap map = new QMap("map"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public QMap(String variable) { - super(Map.class, forVariable(variable)); - } - - public QMap(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QMap(PathMetadata metadata) { - super(Map.class, metadata); - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/review/entity/QReview.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/review/entity/QReview.java deleted file mode 100644 index a8874e4..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/review/entity/QReview.java +++ /dev/null @@ -1,79 +0,0 @@ -package com.justpickup.storeservice.domain.review.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 { - - private static final long serialVersionUID = -573894826L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QReview review = new QReview("review"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - public final StringPath content = createString("content"); - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public final NumberPath orderId = createNumber("orderId", Long.class); - - public final com.justpickup.storeservice.global.entity.QPhoto photo; - - public final com.justpickup.storeservice.domain.reviewreply.entity.QReviewReply reviewReply; - - public final NumberPath starRating = createNumber("starRating", Integer.class); - - public final com.justpickup.storeservice.domain.store.entity.QStore store; - - public final NumberPath userId = createNumber("userId", Long.class); - - public QReview(String variable) { - this(Review.class, forVariable(variable), INITS); - } - - public QReview(Path 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 type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.photo = inits.isInitialized("photo") ? new com.justpickup.storeservice.global.entity.QPhoto(forProperty("photo")) : null; - this.reviewReply = inits.isInitialized("reviewReply") ? new com.justpickup.storeservice.domain.reviewreply.entity.QReviewReply(forProperty("reviewReply")) : null; - this.store = inits.isInitialized("store") ? new com.justpickup.storeservice.domain.store.entity.QStore(forProperty("store"), inits.get("store")) : null; - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/reviewreply/entity/QReviewReply.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/reviewreply/entity/QReviewReply.java deleted file mode 100644 index 899e57f..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/reviewreply/entity/QReviewReply.java +++ /dev/null @@ -1,53 +0,0 @@ -package com.justpickup.storeservice.domain.reviewreply.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; - - -/** - * QReviewReply is a Querydsl query type for ReviewReply - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QReviewReply extends EntityPathBase { - - private static final long serialVersionUID = -1004430868L; - - public static final QReviewReply reviewReply = new QReviewReply("reviewReply"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - public final StringPath content = createString("content"); - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public QReviewReply(String variable) { - super(ReviewReply.class, forVariable(variable)); - } - - public QReviewReply(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QReviewReply(PathMetadata metadata) { - super(ReviewReply.class, metadata); - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/domain/store/entity/QStore.java b/store-service/src/main/generated/com/justpickup/storeservice/domain/store/entity/QStore.java deleted file mode 100644 index 6e9e710..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/domain/store/entity/QStore.java +++ /dev/null @@ -1,83 +0,0 @@ -package com.justpickup.storeservice.domain.store.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; - - -/** - * QStore is a Querydsl query type for Store - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QStore extends EntityPathBase { - - private static final long serialVersionUID = 358375596L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QStore store = new QStore("store"); - - public final com.justpickup.storeservice.global.entity.QBaseEntity _super = new com.justpickup.storeservice.global.entity.QBaseEntity(this); - - public final com.justpickup.storeservice.global.entity.QAddress address; - - public final DateTimePath businessEndTime = createDateTime("businessEndTime", java.time.LocalDateTime.class); - - public final DateTimePath businessStartTime = createDateTime("businessStartTime", java.time.LocalDateTime.class); - - public final ListPath categories = this.createList("categories", com.justpickup.storeservice.domain.category.entity.Category.class, com.justpickup.storeservice.domain.category.entity.QCategory.class, PathInits.DIRECT2); - - //inherited - public final DateTimePath createdAt = _super.createdAt; - - //inherited - public final NumberPath createdBy = _super.createdBy; - - public final NumberPath id = createNumber("id", Long.class); - - public final ListPath items = this.createList("items", com.justpickup.storeservice.domain.item.entity.Item.class, com.justpickup.storeservice.domain.item.entity.QItem.class, PathInits.DIRECT2); - - //inherited - public final DateTimePath lastModifiedAt = _super.lastModifiedAt; - - //inherited - public final NumberPath lastModifiedBy = _super.lastModifiedBy; - - public final com.justpickup.storeservice.domain.map.entity.QMap map; - - public final StringPath phoneNumber = createString("phoneNumber"); - - public final com.justpickup.storeservice.global.entity.QPhoto photo; - - public final NumberPath userId = createNumber("userId", Long.class); - - public QStore(String variable) { - this(Store.class, forVariable(variable), INITS); - } - - public QStore(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QStore(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QStore(PathMetadata metadata, PathInits inits) { - this(Store.class, metadata, inits); - } - - public QStore(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.address = inits.isInitialized("address") ? new com.justpickup.storeservice.global.entity.QAddress(forProperty("address")) : null; - this.map = inits.isInitialized("map") ? new com.justpickup.storeservice.domain.map.entity.QMap(forProperty("map")) : null; - this.photo = inits.isInitialized("photo") ? new com.justpickup.storeservice.global.entity.QPhoto(forProperty("photo")) : null; - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QAddress.java b/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QAddress.java deleted file mode 100644 index 966d52d..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QAddress.java +++ /dev/null @@ -1,41 +0,0 @@ -package com.justpickup.storeservice.global.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
{ - - private static final long serialVersionUID = -1606742445L; - - public static final QAddress address = new QAddress("address"); - - public final StringPath city = createString("city"); - - public final StringPath street = createString("street"); - - public final StringPath zipcode = createString("zipcode"); - - public QAddress(String variable) { - super(Address.class, forVariable(variable)); - } - - public QAddress(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QAddress(PathMetadata metadata) { - super(Address.class, metadata); - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QBaseEntity.java b/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QBaseEntity.java deleted file mode 100644 index 81770bb..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QBaseEntity.java +++ /dev/null @@ -1,43 +0,0 @@ -package com.justpickup.storeservice.global.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; - - -/** - * QBaseEntity is a Querydsl query type for BaseEntity - */ -@Generated("com.querydsl.codegen.DefaultSupertypeSerializer") -public class QBaseEntity extends EntityPathBase { - - private static final long serialVersionUID = -1618660523L; - - public static final QBaseEntity baseEntity = new QBaseEntity("baseEntity"); - - public final DateTimePath createdAt = createDateTime("createdAt", java.time.LocalDateTime.class); - - public final NumberPath createdBy = createNumber("createdBy", Long.class); - - public final DateTimePath lastModifiedAt = createDateTime("lastModifiedAt", java.time.LocalDateTime.class); - - public final NumberPath lastModifiedBy = createNumber("lastModifiedBy", Long.class); - - public QBaseEntity(String variable) { - super(BaseEntity.class, forVariable(variable)); - } - - public QBaseEntity(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QBaseEntity(PathMetadata metadata) { - super(BaseEntity.class, metadata); - } - -} - diff --git a/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QPhoto.java b/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QPhoto.java deleted file mode 100644 index 0b676c4..0000000 --- a/store-service/src/main/generated/com/justpickup/storeservice/global/entity/QPhoto.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.justpickup.storeservice.global.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; - - -/** - * QPhoto is a Querydsl query type for Photo - */ -@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer") -public class QPhoto extends BeanPath { - - private static final long serialVersionUID = 329628753L; - - public static final QPhoto photo = new QPhoto("photo"); - - public final StringPath name = createString("name"); - - public final StringPath path = createString("path"); - - public QPhoto(String variable) { - super(Photo.class, forVariable(variable)); - } - - public QPhoto(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QPhoto(PathMetadata metadata) { - super(Photo.class, metadata); - } - -} -