diff --git a/src/main/generated/shop/geeksasang/domain/announcement/QAnnouncement.java b/src/main/generated/shop/geeksasang/domain/announcement/QAnnouncement.java deleted file mode 100644 index 610da431..00000000 --- a/src/main/generated/shop/geeksasang/domain/announcement/QAnnouncement.java +++ /dev/null @@ -1,54 +0,0 @@ -package shop.geeksasang.domain.announcement; - -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; - - -/** - * QAnnouncement is a Querydsl query type for Announcement - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QAnnouncement extends EntityPathBase { - - private static final long serialVersionUID = 1689574273L; - - public static final QAnnouncement announcement = new QAnnouncement("announcement"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - public final StringPath content = createString("content"); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - public final StringPath imgUrl = createString("imgUrl"); - - //inherited - public final EnumPath status = _super.status; - - public final StringPath title = createString("title"); - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QAnnouncement(String variable) { - super(Announcement.class, forVariable(variable)); - } - - public QAnnouncement(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QAnnouncement(PathMetadata metadata) { - super(Announcement.class, metadata); - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/auth/QEmail.java b/src/main/generated/shop/geeksasang/domain/auth/QEmail.java deleted file mode 100644 index 6c8e7ac3..00000000 --- a/src/main/generated/shop/geeksasang/domain/auth/QEmail.java +++ /dev/null @@ -1,66 +0,0 @@ -package shop.geeksasang.domain.auth; - -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; - - -/** - * QEmail is a Querydsl query type for Email - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QEmail extends EntityPathBase { - - private static final long serialVersionUID = 2140392259L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QEmail email = new QEmail("email"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - public final StringPath address = createString("address"); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final EnumPath emailValidStatus = createEnum("emailValidStatus", shop.geeksasang.config.status.ValidStatus.class); - - public final NumberPath id = createNumber("id", Integer.class); - - public final shop.geeksasang.domain.member.QMember member; - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QEmail(String variable) { - this(Email.class, forVariable(variable), INITS); - } - - public QEmail(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QEmail(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QEmail(PathMetadata metadata, PathInits inits) { - this(Email.class, metadata, inits); - } - - public QEmail(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.member = inits.isInitialized("member") ? new shop.geeksasang.domain.member.QMember(forProperty("member"), inits.get("member")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/auth/QPhoneNumber.java b/src/main/generated/shop/geeksasang/domain/auth/QPhoneNumber.java deleted file mode 100644 index 74571147..00000000 --- a/src/main/generated/shop/geeksasang/domain/auth/QPhoneNumber.java +++ /dev/null @@ -1,66 +0,0 @@ -package shop.geeksasang.domain.auth; - -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; - - -/** - * QPhoneNumber is a Querydsl query type for PhoneNumber - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QPhoneNumber extends EntityPathBase { - - private static final long serialVersionUID = -1953783618L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QPhoneNumber phoneNumber = new QPhoneNumber("phoneNumber"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - public final shop.geeksasang.domain.member.QMember member; - - public final StringPath number = createString("number"); - - public final EnumPath phoneValidStatus = createEnum("phoneValidStatus", shop.geeksasang.config.status.ValidStatus.class); - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QPhoneNumber(String variable) { - this(PhoneNumber.class, forVariable(variable), INITS); - } - - public QPhoneNumber(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QPhoneNumber(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QPhoneNumber(PathMetadata metadata, PathInits inits) { - this(PhoneNumber.class, metadata, inits); - } - - public QPhoneNumber(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.member = inits.isInitialized("member") ? new shop.geeksasang.domain.member.QMember(forProperty("member"), inits.get("member")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/auth/QVerificationCount.java b/src/main/generated/shop/geeksasang/domain/auth/QVerificationCount.java deleted file mode 100644 index c80a0c5c..00000000 --- a/src/main/generated/shop/geeksasang/domain/auth/QVerificationCount.java +++ /dev/null @@ -1,43 +0,0 @@ -package shop.geeksasang.domain.auth; - -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; - - -/** - * QVerificationCount is a Querydsl query type for VerificationCount - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QVerificationCount extends EntityPathBase { - - private static final long serialVersionUID = -2102697765L; - - public static final QVerificationCount verificationCount = new QVerificationCount("verificationCount"); - - public final NumberPath emailVerificationCount = createNumber("emailVerificationCount", Integer.class); - - public final NumberPath id = createNumber("id", Integer.class); - - public final NumberPath smsVerificationCount = createNumber("smsVerificationCount", Integer.class); - - public final StringPath UUID = createString("UUID"); - - public QVerificationCount(String variable) { - super(VerificationCount.class, forVariable(variable)); - } - - public QVerificationCount(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QVerificationCount(PathMetadata metadata) { - super(VerificationCount.class, metadata); - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/block/QBlock.java b/src/main/generated/shop/geeksasang/domain/block/QBlock.java deleted file mode 100644 index 55e5df6e..00000000 --- a/src/main/generated/shop/geeksasang/domain/block/QBlock.java +++ /dev/null @@ -1,65 +0,0 @@ -package shop.geeksasang.domain.block; - -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; - - -/** - * QBlock is a Querydsl query type for Block - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QBlock extends EntityPathBase { - - private static final long serialVersionUID = -172157473L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QBlock block = new QBlock("block"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - public final shop.geeksasang.domain.member.QMember blockedMember; - - public final shop.geeksasang.domain.member.QMember blockingMember; - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QBlock(String variable) { - this(Block.class, forVariable(variable), INITS); - } - - public QBlock(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QBlock(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QBlock(PathMetadata metadata, PathInits inits) { - this(Block.class, metadata, inits); - } - - public QBlock(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.blockedMember = inits.isInitialized("blockedMember") ? new shop.geeksasang.domain.member.QMember(forProperty("blockedMember"), inits.get("blockedMember")) : null; - this.blockingMember = inits.isInitialized("blockingMember") ? new shop.geeksasang.domain.member.QMember(forProperty("blockingMember"), inits.get("blockingMember")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/commercial/QCommercial.java b/src/main/generated/shop/geeksasang/domain/commercial/QCommercial.java deleted file mode 100644 index 8c779c34..00000000 --- a/src/main/generated/shop/geeksasang/domain/commercial/QCommercial.java +++ /dev/null @@ -1,50 +0,0 @@ -package shop.geeksasang.domain.commercial; - -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; - - -/** - * QCommercial is a Querydsl query type for Commercial - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QCommercial extends EntityPathBase { - - private static final long serialVersionUID = 1541315297L; - - public static final QCommercial commercial = new QCommercial("commercial"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - public final StringPath imgUrl = createString("imgUrl"); - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QCommercial(String variable) { - super(Commercial.class, forVariable(variable)); - } - - public QCommercial(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QCommercial(PathMetadata metadata) { - super(Commercial.class, metadata); - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryParty.java b/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryParty.java deleted file mode 100644 index ca98e82f..00000000 --- a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryParty.java +++ /dev/null @@ -1,105 +0,0 @@ -package shop.geeksasang.domain.deliveryparty; - -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; - - -/** - * QDeliveryParty is a Querydsl query type for DeliveryParty - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QDeliveryParty extends EntityPathBase { - - private static final long serialVersionUID = -534666807L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QDeliveryParty deliveryParty = new QDeliveryParty("deliveryParty"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - public final StringPath accountNumber = createString("accountNumber"); - - public final StringPath bank = createString("bank"); - - public final StringPath chatRoomName = createString("chatRoomName"); - - public final shop.geeksasang.domain.member.QMember chief; - - public final StringPath content = createString("content"); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath currentMatching = createNumber("currentMatching", Integer.class); - - public final ListPath deliveryPartyHashTags = this.createList("deliveryPartyHashTags", DeliveryPartyHashTag.class, QDeliveryPartyHashTag.class, PathInits.DIRECT2); - - public final ListPath deliveryPartyMembers = this.createList("deliveryPartyMembers", DeliveryPartyMember.class, QDeliveryPartyMember.class, PathInits.DIRECT2); - - public final ListPath deliveryPartyReports = this.createList("deliveryPartyReports", shop.geeksasang.domain.report.DeliveryPartyReport.class, shop.geeksasang.domain.report.QDeliveryPartyReport.class, PathInits.DIRECT2); - - public final shop.geeksasang.domain.university.QDormitory dormitory; - - public final QFoodCategory foodCategory; - - public final NumberPath id = createNumber("id", Integer.class); - - public final shop.geeksasang.domain.location.QLocation location; - - public final EnumPath matchingStatus = createEnum("matchingStatus", shop.geeksasang.config.status.MatchingStatus.class); - - public final NumberPath maxMatching = createNumber("maxMatching", Integer.class); - - public final EnumPath orderStatus = createEnum("orderStatus", shop.geeksasang.config.status.OrderStatus.class); - - public final DateTimePath orderTime = createDateTime("orderTime", java.time.LocalDateTime.class); - - public final EnumPath orderTimeCategory = createEnum("orderTimeCategory", shop.geeksasang.config.type.OrderTimeCategoryType.class); - - public final NumberPath reportedCount = createNumber("reportedCount", Integer.class); - - //inherited - public final EnumPath status = _super.status; - - public final StringPath storeUrl = createString("storeUrl"); - - public final StringPath title = createString("title"); - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public final StringPath uuid = createString("uuid"); - - public QDeliveryParty(String variable) { - this(DeliveryParty.class, forVariable(variable), INITS); - } - - public QDeliveryParty(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QDeliveryParty(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QDeliveryParty(PathMetadata metadata, PathInits inits) { - this(DeliveryParty.class, metadata, inits); - } - - public QDeliveryParty(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.chief = inits.isInitialized("chief") ? new shop.geeksasang.domain.member.QMember(forProperty("chief"), inits.get("chief")) : null; - this.dormitory = inits.isInitialized("dormitory") ? new shop.geeksasang.domain.university.QDormitory(forProperty("dormitory"), inits.get("dormitory")) : null; - this.foodCategory = inits.isInitialized("foodCategory") ? new QFoodCategory(forProperty("foodCategory")) : null; - this.location = inits.isInitialized("location") ? new shop.geeksasang.domain.location.QLocation(forProperty("location")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyHashTag.java b/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyHashTag.java deleted file mode 100644 index 4fac8be0..00000000 --- a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyHashTag.java +++ /dev/null @@ -1,65 +0,0 @@ -package shop.geeksasang.domain.deliveryparty; - -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; - - -/** - * QDeliveryPartyHashTag is a Querydsl query type for DeliveryPartyHashTag - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QDeliveryPartyHashTag extends EntityPathBase { - - private static final long serialVersionUID = -1567664733L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QDeliveryPartyHashTag deliveryPartyHashTag = new QDeliveryPartyHashTag("deliveryPartyHashTag"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final QDeliveryParty deliveryParty; - - public final QHashTag hashTag; - - public final NumberPath id = createNumber("id", Integer.class); - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QDeliveryPartyHashTag(String variable) { - this(DeliveryPartyHashTag.class, forVariable(variable), INITS); - } - - public QDeliveryPartyHashTag(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QDeliveryPartyHashTag(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QDeliveryPartyHashTag(PathMetadata metadata, PathInits inits) { - this(DeliveryPartyHashTag.class, metadata, inits); - } - - public QDeliveryPartyHashTag(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.deliveryParty = inits.isInitialized("deliveryParty") ? new QDeliveryParty(forProperty("deliveryParty"), inits.get("deliveryParty")) : null; - this.hashTag = inits.isInitialized("hashTag") ? new QHashTag(forProperty("hashTag")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyMember.java b/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyMember.java deleted file mode 100644 index 9ed2a727..00000000 --- a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyMember.java +++ /dev/null @@ -1,69 +0,0 @@ -package shop.geeksasang.domain.deliveryparty; - -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; - - -/** - * QDeliveryPartyMember is a Querydsl query type for DeliveryPartyMember - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QDeliveryPartyMember extends EntityPathBase { - - private static final long serialVersionUID = 1620106691L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QDeliveryPartyMember deliveryPartyMember = new QDeliveryPartyMember("deliveryPartyMember"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - public final EnumPath acccountTransferStatus = createEnum("acccountTransferStatus", shop.geeksasang.config.status.AccountTransferStatus.class); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - public final ListPath menuList = this.createList("menuList", DeliveryPartyMenu.class, QDeliveryPartyMenu.class, PathInits.DIRECT2); - - public final shop.geeksasang.domain.member.QMember participant; - - public final QDeliveryParty party; - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QDeliveryPartyMember(String variable) { - this(DeliveryPartyMember.class, forVariable(variable), INITS); - } - - public QDeliveryPartyMember(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QDeliveryPartyMember(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QDeliveryPartyMember(PathMetadata metadata, PathInits inits) { - this(DeliveryPartyMember.class, metadata, inits); - } - - public QDeliveryPartyMember(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.participant = inits.isInitialized("participant") ? new shop.geeksasang.domain.member.QMember(forProperty("participant"), inits.get("participant")) : null; - this.party = inits.isInitialized("party") ? new QDeliveryParty(forProperty("party"), inits.get("party")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyMenu.java b/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyMenu.java deleted file mode 100644 index a89065f7..00000000 --- a/src/main/generated/shop/geeksasang/domain/deliveryparty/QDeliveryPartyMenu.java +++ /dev/null @@ -1,66 +0,0 @@ -package shop.geeksasang.domain.deliveryparty; - -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; - - -/** - * QDeliveryPartyMenu is a Querydsl query type for DeliveryPartyMenu - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QDeliveryPartyMenu extends EntityPathBase { - - private static final long serialVersionUID = -811721016L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QDeliveryPartyMenu deliveryPartyMenu = new QDeliveryPartyMenu("deliveryPartyMenu"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - public final QDeliveryPartyMember menuOwner; - - public final StringPath name = createString("name"); - - public final NumberPath price = createNumber("price", Integer.class); - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QDeliveryPartyMenu(String variable) { - this(DeliveryPartyMenu.class, forVariable(variable), INITS); - } - - public QDeliveryPartyMenu(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QDeliveryPartyMenu(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QDeliveryPartyMenu(PathMetadata metadata, PathInits inits) { - this(DeliveryPartyMenu.class, metadata, inits); - } - - public QDeliveryPartyMenu(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.menuOwner = inits.isInitialized("menuOwner") ? new QDeliveryPartyMember(forProperty("menuOwner"), inits.get("menuOwner")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/deliveryparty/QFoodCategory.java b/src/main/generated/shop/geeksasang/domain/deliveryparty/QFoodCategory.java deleted file mode 100644 index f30d15fd..00000000 --- a/src/main/generated/shop/geeksasang/domain/deliveryparty/QFoodCategory.java +++ /dev/null @@ -1,50 +0,0 @@ -package shop.geeksasang.domain.deliveryparty; - -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; - - -/** - * QFoodCategory is a Querydsl query type for FoodCategory - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QFoodCategory extends EntityPathBase { - - private static final long serialVersionUID = 1681590821L; - - public static final QFoodCategory foodCategory = new QFoodCategory("foodCategory"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - //inherited - public final EnumPath status = _super.status; - - public final StringPath title = createString("title"); - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QFoodCategory(String variable) { - super(FoodCategory.class, forVariable(variable)); - } - - public QFoodCategory(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QFoodCategory(PathMetadata metadata) { - super(FoodCategory.class, metadata); - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/deliveryparty/QHashTag.java b/src/main/generated/shop/geeksasang/domain/deliveryparty/QHashTag.java deleted file mode 100644 index fbf4b9ca..00000000 --- a/src/main/generated/shop/geeksasang/domain/deliveryparty/QHashTag.java +++ /dev/null @@ -1,42 +0,0 @@ -package shop.geeksasang.domain.deliveryparty; - -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; - - -/** - * QHashTag is a Querydsl query type for HashTag - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QHashTag extends EntityPathBase { - - private static final long serialVersionUID = 1188848483L; - - public static final QHashTag hashTag = new QHashTag("hashTag"); - - public final ListPath deliveryPartyHashTags = this.createList("deliveryPartyHashTags", DeliveryPartyHashTag.class, QDeliveryPartyHashTag.class, PathInits.DIRECT2); - - public final NumberPath id = createNumber("id", Integer.class); - - public final StringPath title = createString("title"); - - public QHashTag(String variable) { - super(HashTag.class, forVariable(variable)); - } - - public QHashTag(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QHashTag(PathMetadata metadata) { - super(HashTag.class, metadata); - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/location/QLocation.java b/src/main/generated/shop/geeksasang/domain/location/QLocation.java deleted file mode 100644 index e590551c..00000000 --- a/src/main/generated/shop/geeksasang/domain/location/QLocation.java +++ /dev/null @@ -1,43 +0,0 @@ -package shop.geeksasang.domain.location; - -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; - - -/** - * QLocation is a Querydsl query type for Location - */ -@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer") -public class QLocation extends BeanPath { - - private static final long serialVersionUID = -2121792063L; - - public static final QLocation location = new QLocation("location"); - - public final NumberPath Latitude = createNumber("Latitude", Double.class); - - public final NumberPath latitude = createNumber("latitude", Double.class); - - public final NumberPath Longitude = createNumber("Longitude", Double.class); - - public final NumberPath longitude = createNumber("longitude", Double.class); - - public QLocation(String variable) { - super(Location.class, forVariable(variable)); - } - - public QLocation(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QLocation(PathMetadata metadata) { - super(Location.class, metadata); - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/member/QMember.java b/src/main/generated/shop/geeksasang/domain/member/QMember.java deleted file mode 100644 index 146a0ac2..00000000 --- a/src/main/generated/shop/geeksasang/domain/member/QMember.java +++ /dev/null @@ -1,105 +0,0 @@ -package shop.geeksasang.domain.member; - -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; - - -/** - * QMember is a Querydsl query type for Member - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QMember extends EntityPathBase { - - private static final long serialVersionUID = 759956961L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QMember member = new QMember("member1"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - public final StringPath appleRefreshToken = createString("appleRefreshToken"); - - public final ListPath blocks = this.createList("blocks", shop.geeksasang.domain.block.Block.class, shop.geeksasang.domain.block.QBlock.class, PathInits.DIRECT2); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final ListPath deliverPartyReportRecords = this.createList("deliverPartyReportRecords", shop.geeksasang.domain.report.record.DeliverPartyReportRecord.class, shop.geeksasang.domain.report.record.QDeliverPartyReportRecord.class, PathInits.DIRECT2); - - public final shop.geeksasang.domain.university.QDormitory dormitory; - - public final shop.geeksasang.domain.auth.QEmail email; - - public final StringPath fcmToken = createString("fcmToken"); - - public final NumberPath id = createNumber("id", Integer.class); - - public final StringPath informationAgreeStatus = createString("informationAgreeStatus"); - - public final StringPath jwtToken = createString("jwtToken"); - - public final StringPath loginId = createString("loginId"); - - public final EnumPath loginStatus = createEnum("loginStatus", shop.geeksasang.config.status.LoginStatus.class); - - public final EnumPath memberLoginType = createEnum("memberLoginType", shop.geeksasang.config.type.MemberLoginType.class); - - public final ListPath memberReportRecords = this.createList("memberReportRecords", shop.geeksasang.domain.report.record.MemberReportRecord.class, shop.geeksasang.domain.report.record.QMemberReportRecord.class, PathInits.DIRECT2); - - public final StringPath nickName = createString("nickName"); - - public final StringPath password = createString("password"); - - public final NumberPath perDayReportingCount = createNumber("perDayReportingCount", Integer.class); - - public final shop.geeksasang.domain.auth.QPhoneNumber phoneNumber; - - public final StringPath profileImgUrl = createString("profileImgUrl"); - - public final NumberPath reportedCount = createNumber("reportedCount", Integer.class); - - public final ListPath reportedMembers = this.createList("reportedMembers", shop.geeksasang.domain.report.MemberReport.class, shop.geeksasang.domain.report.QMemberReport.class, PathInits.DIRECT2); - - public final ListPath reportingMembers = this.createList("reportingMembers", shop.geeksasang.domain.report.MemberReport.class, shop.geeksasang.domain.report.QMemberReport.class, PathInits.DIRECT2); - - //inherited - public final EnumPath status = _super.status; - - public final shop.geeksasang.domain.university.QUniversity university; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QMember(String variable) { - this(Member.class, forVariable(variable), INITS); - } - - public QMember(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QMember(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QMember(PathMetadata metadata, PathInits inits) { - this(Member.class, metadata, inits); - } - - public QMember(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.dormitory = inits.isInitialized("dormitory") ? new shop.geeksasang.domain.university.QDormitory(forProperty("dormitory"), inits.get("dormitory")) : null; - this.email = inits.isInitialized("email") ? new shop.geeksasang.domain.auth.QEmail(forProperty("email"), inits.get("email")) : null; - this.phoneNumber = inits.isInitialized("phoneNumber") ? new shop.geeksasang.domain.auth.QPhoneNumber(forProperty("phoneNumber"), inits.get("phoneNumber")) : null; - this.university = inits.isInitialized("university") ? new shop.geeksasang.domain.university.QUniversity(forProperty("university")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/report/QDeliveryPartyReport.java b/src/main/generated/shop/geeksasang/domain/report/QDeliveryPartyReport.java deleted file mode 100644 index 501048b6..00000000 --- a/src/main/generated/shop/geeksasang/domain/report/QDeliveryPartyReport.java +++ /dev/null @@ -1,88 +0,0 @@ -package shop.geeksasang.domain.report; - -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; - - -/** - * QDeliveryPartyReport is a Querydsl query type for DeliveryPartyReport - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QDeliveryPartyReport extends EntityPathBase { - - private static final long serialVersionUID = 287059161L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QDeliveryPartyReport deliveryPartyReport = new QDeliveryPartyReport("deliveryPartyReport"); - - public final QReport _super; - - //inherited - public final StringPath createdAt; - - public final shop.geeksasang.domain.deliveryparty.QDeliveryParty deliveryParty; - - //inherited - public final NumberPath id; - - // inherited - public final QReportCategory reportCategory; - - //inherited - public final StringPath reportContent; - - // inherited - public final shop.geeksasang.domain.member.QMember reportedMember; - - // inherited - public final shop.geeksasang.domain.member.QMember reportingMember; - - //inherited - public final EnumPath reportStatus; - - //inherited - public final EnumPath status; - - //inherited - public final StringPath updatedAt; - - public QDeliveryPartyReport(String variable) { - this(DeliveryPartyReport.class, forVariable(variable), INITS); - } - - public QDeliveryPartyReport(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QDeliveryPartyReport(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QDeliveryPartyReport(PathMetadata metadata, PathInits inits) { - this(DeliveryPartyReport.class, metadata, inits); - } - - public QDeliveryPartyReport(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this._super = new QReport(type, metadata, inits); - this.createdAt = _super.createdAt; - this.deliveryParty = inits.isInitialized("deliveryParty") ? new shop.geeksasang.domain.deliveryparty.QDeliveryParty(forProperty("deliveryParty"), inits.get("deliveryParty")) : null; - this.id = _super.id; - this.reportCategory = _super.reportCategory; - this.reportContent = _super.reportContent; - this.reportedMember = _super.reportedMember; - this.reportingMember = _super.reportingMember; - this.reportStatus = _super.reportStatus; - this.status = _super.status; - this.updatedAt = _super.updatedAt; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/report/QMemberReport.java b/src/main/generated/shop/geeksasang/domain/report/QMemberReport.java deleted file mode 100644 index c6f4d3d8..00000000 --- a/src/main/generated/shop/geeksasang/domain/report/QMemberReport.java +++ /dev/null @@ -1,85 +0,0 @@ -package shop.geeksasang.domain.report; - -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; - - -/** - * QMemberReport is a Querydsl query type for MemberReport - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QMemberReport extends EntityPathBase { - - private static final long serialVersionUID = 1377393179L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QMemberReport memberReport = new QMemberReport("memberReport"); - - public final QReport _super; - - //inherited - public final StringPath createdAt; - - //inherited - public final NumberPath id; - - // inherited - public final QReportCategory reportCategory; - - //inherited - public final StringPath reportContent; - - // inherited - public final shop.geeksasang.domain.member.QMember reportedMember; - - // inherited - public final shop.geeksasang.domain.member.QMember reportingMember; - - //inherited - public final EnumPath reportStatus; - - //inherited - public final EnumPath status; - - //inherited - public final StringPath updatedAt; - - public QMemberReport(String variable) { - this(MemberReport.class, forVariable(variable), INITS); - } - - public QMemberReport(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QMemberReport(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QMemberReport(PathMetadata metadata, PathInits inits) { - this(MemberReport.class, metadata, inits); - } - - public QMemberReport(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this._super = new QReport(type, metadata, inits); - this.createdAt = _super.createdAt; - this.id = _super.id; - this.reportCategory = _super.reportCategory; - this.reportContent = _super.reportContent; - this.reportedMember = _super.reportedMember; - this.reportingMember = _super.reportingMember; - this.reportStatus = _super.reportStatus; - this.status = _super.status; - this.updatedAt = _super.updatedAt; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/report/QReport.java b/src/main/generated/shop/geeksasang/domain/report/QReport.java deleted file mode 100644 index b077206d..00000000 --- a/src/main/generated/shop/geeksasang/domain/report/QReport.java +++ /dev/null @@ -1,72 +0,0 @@ -package shop.geeksasang.domain.report; - -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; - - -/** - * QReport is a Querydsl query type for Report - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QReport extends EntityPathBase { - - private static final long serialVersionUID = 1544144033L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QReport report = new QReport("report"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - public final QReportCategory reportCategory; - - public final StringPath reportContent = createString("reportContent"); - - public final shop.geeksasang.domain.member.QMember reportedMember; - - public final shop.geeksasang.domain.member.QMember reportingMember; - - public final EnumPath reportStatus = createEnum("reportStatus", shop.geeksasang.config.status.ReportStatus.class); - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QReport(String variable) { - this(Report.class, forVariable(variable), INITS); - } - - public QReport(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QReport(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QReport(PathMetadata metadata, PathInits inits) { - this(Report.class, metadata, inits); - } - - public QReport(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.reportCategory = inits.isInitialized("reportCategory") ? new QReportCategory(forProperty("reportCategory")) : null; - this.reportedMember = inits.isInitialized("reportedMember") ? new shop.geeksasang.domain.member.QMember(forProperty("reportedMember"), inits.get("reportedMember")) : null; - this.reportingMember = inits.isInitialized("reportingMember") ? new shop.geeksasang.domain.member.QMember(forProperty("reportingMember"), inits.get("reportingMember")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/report/QReportCategory.java b/src/main/generated/shop/geeksasang/domain/report/QReportCategory.java deleted file mode 100644 index d382d283..00000000 --- a/src/main/generated/shop/geeksasang/domain/report/QReportCategory.java +++ /dev/null @@ -1,50 +0,0 @@ -package shop.geeksasang.domain.report; - -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; - - -/** - * QReportCategory is a Querydsl query type for ReportCategory - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QReportCategory extends EntityPathBase { - - private static final long serialVersionUID = -303254337L; - - public static final QReportCategory reportCategory = new QReportCategory("reportCategory"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath reportCategoryId = createNumber("reportCategoryId", Integer.class); - - //inherited - public final EnumPath status = _super.status; - - public final StringPath title = createString("title"); - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QReportCategory(String variable) { - super(ReportCategory.class, forVariable(variable)); - } - - public QReportCategory(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QReportCategory(PathMetadata metadata) { - super(ReportCategory.class, metadata); - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/report/record/QDeliverPartyReportRecord.java b/src/main/generated/shop/geeksasang/domain/report/record/QDeliverPartyReportRecord.java deleted file mode 100644 index ff5dbf17..00000000 --- a/src/main/generated/shop/geeksasang/domain/report/record/QDeliverPartyReportRecord.java +++ /dev/null @@ -1,72 +0,0 @@ -package shop.geeksasang.domain.report.record; - -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; - - -/** - * QDeliverPartyReportRecord is a Querydsl query type for DeliverPartyReportRecord - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QDeliverPartyReportRecord extends EntityPathBase { - - private static final long serialVersionUID = 1210481270L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QDeliverPartyReportRecord deliverPartyReportRecord = new QDeliverPartyReportRecord("deliverPartyReportRecord"); - - public final QReportRecord _super; - - //inherited - public final StringPath createdAt; - - //inherited - public final NumberPath id; - - // inherited - public final shop.geeksasang.domain.member.QMember owner; - - public final shop.geeksasang.domain.deliveryparty.QDeliveryParty reportedDeliveryParty; - - //inherited - public final EnumPath status; - - //inherited - public final StringPath updatedAt; - - public QDeliverPartyReportRecord(String variable) { - this(DeliverPartyReportRecord.class, forVariable(variable), INITS); - } - - public QDeliverPartyReportRecord(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QDeliverPartyReportRecord(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QDeliverPartyReportRecord(PathMetadata metadata, PathInits inits) { - this(DeliverPartyReportRecord.class, metadata, inits); - } - - public QDeliverPartyReportRecord(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this._super = new QReportRecord(type, metadata, inits); - this.createdAt = _super.createdAt; - this.id = _super.id; - this.owner = _super.owner; - this.reportedDeliveryParty = inits.isInitialized("reportedDeliveryParty") ? new shop.geeksasang.domain.deliveryparty.QDeliveryParty(forProperty("reportedDeliveryParty"), inits.get("reportedDeliveryParty")) : null; - this.status = _super.status; - this.updatedAt = _super.updatedAt; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/report/record/QMemberReportRecord.java b/src/main/generated/shop/geeksasang/domain/report/record/QMemberReportRecord.java deleted file mode 100644 index f3a1069b..00000000 --- a/src/main/generated/shop/geeksasang/domain/report/record/QMemberReportRecord.java +++ /dev/null @@ -1,72 +0,0 @@ -package shop.geeksasang.domain.report.record; - -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; - - -/** - * QMemberReportRecord is a Querydsl query type for MemberReportRecord - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QMemberReportRecord extends EntityPathBase { - - private static final long serialVersionUID = 1615923919L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QMemberReportRecord memberReportRecord = new QMemberReportRecord("memberReportRecord"); - - public final QReportRecord _super; - - //inherited - public final StringPath createdAt; - - //inherited - public final NumberPath id; - - // inherited - public final shop.geeksasang.domain.member.QMember owner; - - public final shop.geeksasang.domain.member.QMember reportedMember; - - //inherited - public final EnumPath status; - - //inherited - public final StringPath updatedAt; - - public QMemberReportRecord(String variable) { - this(MemberReportRecord.class, forVariable(variable), INITS); - } - - public QMemberReportRecord(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QMemberReportRecord(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QMemberReportRecord(PathMetadata metadata, PathInits inits) { - this(MemberReportRecord.class, metadata, inits); - } - - public QMemberReportRecord(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this._super = new QReportRecord(type, metadata, inits); - this.createdAt = _super.createdAt; - this.id = _super.id; - this.owner = _super.owner; - this.reportedMember = inits.isInitialized("reportedMember") ? new shop.geeksasang.domain.member.QMember(forProperty("reportedMember"), inits.get("reportedMember")) : null; - this.status = _super.status; - this.updatedAt = _super.updatedAt; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/report/record/QReportRecord.java b/src/main/generated/shop/geeksasang/domain/report/record/QReportRecord.java deleted file mode 100644 index 4f7e474c..00000000 --- a/src/main/generated/shop/geeksasang/domain/report/record/QReportRecord.java +++ /dev/null @@ -1,62 +0,0 @@ -package shop.geeksasang.domain.report.record; - -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; - - -/** - * QReportRecord is a Querydsl query type for ReportRecord - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QReportRecord extends EntityPathBase { - - private static final long serialVersionUID = -1694607595L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QReportRecord reportRecord = new QReportRecord("reportRecord"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final NumberPath id = createNumber("id", Integer.class); - - public final shop.geeksasang.domain.member.QMember owner; - - //inherited - public final EnumPath status = _super.status; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QReportRecord(String variable) { - this(ReportRecord.class, forVariable(variable), INITS); - } - - public QReportRecord(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QReportRecord(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QReportRecord(PathMetadata metadata, PathInits inits) { - this(ReportRecord.class, metadata, inits); - } - - public QReportRecord(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.owner = inits.isInitialized("owner") ? new shop.geeksasang.domain.member.QMember(forProperty("owner"), inits.get("owner")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/university/QDormitory.java b/src/main/generated/shop/geeksasang/domain/university/QDormitory.java deleted file mode 100644 index f30673fd..00000000 --- a/src/main/generated/shop/geeksasang/domain/university/QDormitory.java +++ /dev/null @@ -1,71 +0,0 @@ -package shop.geeksasang.domain.university; - -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; - - -/** - * QDormitory is a Querydsl query type for Dormitory - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QDormitory extends EntityPathBase { - - private static final long serialVersionUID = -1419265678L; - - private static final PathInits INITS = PathInits.DIRECT2; - - public static final QDormitory dormitory = new QDormitory("dormitory"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final ListPath deliveryParties = this.createList("deliveryParties", shop.geeksasang.domain.deliveryparty.DeliveryParty.class, shop.geeksasang.domain.deliveryparty.QDeliveryParty.class, PathInits.DIRECT2); - - public final NumberPath id = createNumber("id", Integer.class); - - public final shop.geeksasang.domain.location.QLocation location; - - public final ListPath members = this.createList("members", shop.geeksasang.domain.member.Member.class, shop.geeksasang.domain.member.QMember.class, PathInits.DIRECT2); - - public final StringPath name = createString("name"); - - //inherited - public final EnumPath status = _super.status; - - public final QUniversity university; - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QDormitory(String variable) { - this(Dormitory.class, forVariable(variable), INITS); - } - - public QDormitory(Path path) { - this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); - } - - public QDormitory(PathMetadata metadata) { - this(metadata, PathInits.getFor(metadata, INITS)); - } - - public QDormitory(PathMetadata metadata, PathInits inits) { - this(Dormitory.class, metadata, inits); - } - - public QDormitory(Class type, PathMetadata metadata, PathInits inits) { - super(type, metadata, inits); - this.location = inits.isInitialized("location") ? new shop.geeksasang.domain.location.QLocation(forProperty("location")) : null; - this.university = inits.isInitialized("university") ? new QUniversity(forProperty("university")) : null; - } - -} - diff --git a/src/main/generated/shop/geeksasang/domain/university/QUniversity.java b/src/main/generated/shop/geeksasang/domain/university/QUniversity.java deleted file mode 100644 index d0c83f86..00000000 --- a/src/main/generated/shop/geeksasang/domain/university/QUniversity.java +++ /dev/null @@ -1,57 +0,0 @@ -package shop.geeksasang.domain.university; - -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; - - -/** - * QUniversity is a Querydsl query type for University - */ -@Generated("com.querydsl.codegen.DefaultEntitySerializer") -public class QUniversity extends EntityPathBase { - - private static final long serialVersionUID = -1804916639L; - - public static final QUniversity university = new QUniversity("university"); - - public final shop.geeksasang.config.domain.QBaseEntity _super = new shop.geeksasang.config.domain.QBaseEntity(this); - - //inherited - public final StringPath createdAt = _super.createdAt; - - public final ListPath dormitories = this.createList("dormitories", Dormitory.class, QDormitory.class, PathInits.DIRECT2); - - public final StringPath emailAddress = createString("emailAddress"); - - public final NumberPath id = createNumber("id", Integer.class); - - public final StringPath name = createString("name"); - - //inherited - public final EnumPath status = _super.status; - - public final StringPath universityImgUrl = createString("universityImgUrl"); - - //inherited - public final StringPath updatedAt = _super.updatedAt; - - public QUniversity(String variable) { - super(University.class, forVariable(variable)); - } - - public QUniversity(Path path) { - super(path.getType(), path.getMetadata()); - } - - public QUniversity(PathMetadata metadata) { - super(University.class, metadata); - } - -} -