-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 로그인 시 loginId or phone 로그인으로 변경
- Loading branch information
Showing
45 changed files
with
1,648 additions
and
211 deletions.
There are no files selected for viewing
70 changes: 70 additions & 0 deletions
70
src/main/generated/jikgong/domain/apply/entity/QApply.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package jikgong.domain.apply.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; | ||
|
||
|
||
/** | ||
* QApply is a Querydsl query type for Apply | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QApply extends EntityPathBase<Apply> { | ||
|
||
private static final long serialVersionUID = -982848404L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QApply apply = new QApply("apply"); | ||
|
||
public final jikgong.domain.common.QBaseEntity _super = new jikgong.domain.common.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final BooleanPath isOffer = createBoolean("isOffer"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> lastModifiedDate = _super.lastModifiedDate; | ||
|
||
public final jikgong.domain.member.entity.QMember member; | ||
|
||
public final EnumPath<ApplyStatus> status = createEnum("status", ApplyStatus.class); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> statusDecisionTime = createDateTime("statusDecisionTime", java.time.LocalDateTime.class); | ||
|
||
public final NumberPath<Long> version = createNumber("version", Long.class); | ||
|
||
public final jikgong.domain.workdate.entity.QWorkDate workDate; | ||
|
||
public QApply(String variable) { | ||
this(Apply.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QApply(Path<? extends Apply> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QApply(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QApply(PathMetadata metadata, PathInits inits) { | ||
this(Apply.class, metadata, inits); | ||
} | ||
|
||
public QApply(Class<? extends Apply> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.member = inits.isInitialized("member") ? new jikgong.domain.member.entity.QMember(forProperty("member"), inits.get("member")) : null; | ||
this.workDate = inits.isInitialized("workDate") ? new jikgong.domain.workdate.entity.QWorkDate(forProperty("workDate"), inits.get("workDate")) : null; | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package jikgong.domain.common; | ||
|
||
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> { | ||
|
||
private static final long serialVersionUID = -1654717510L; | ||
|
||
public static final QAddress address1 = new QAddress("address1"); | ||
|
||
public final StringPath address = createString("address"); | ||
|
||
public final NumberPath<Float> latitude = createNumber("latitude", Float.class); | ||
|
||
public final NumberPath<Float> longitude = createNumber("longitude", Float.class); | ||
|
||
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); | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package jikgong.domain.common; | ||
|
||
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<BaseEntity> { | ||
|
||
private static final long serialVersionUID = -619712370L; | ||
|
||
public static final QBaseEntity baseEntity = new QBaseEntity("baseEntity"); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> createdDate = createDateTime("createdDate", java.time.LocalDateTime.class); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> lastModifiedDate = createDateTime("lastModifiedDate", java.time.LocalDateTime.class); | ||
|
||
public QBaseEntity(String variable) { | ||
super(BaseEntity.class, forVariable(variable)); | ||
} | ||
|
||
public QBaseEntity(Path<? extends BaseEntity> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QBaseEntity(PathMetadata metadata) { | ||
super(BaseEntity.class, metadata); | ||
} | ||
|
||
} | ||
|
70 changes: 70 additions & 0 deletions
70
src/main/generated/jikgong/domain/history/entity/QHistory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package jikgong.domain.history.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; | ||
|
||
|
||
/** | ||
* QHistory is a Querydsl query type for History | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QHistory extends EntityPathBase<History> { | ||
|
||
private static final long serialVersionUID = -1380020756L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QHistory history = new QHistory("history"); | ||
|
||
public final jikgong.domain.common.QBaseEntity _super = new jikgong.domain.common.QBaseEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final EnumPath<WorkStatus> endStatus = createEnum("endStatus", WorkStatus.class); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> endStatusDecisionTime = createDateTime("endStatusDecisionTime", java.time.LocalDateTime.class); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> lastModifiedDate = _super.lastModifiedDate; | ||
|
||
public final jikgong.domain.member.entity.QMember member; | ||
|
||
public final EnumPath<WorkStatus> startStatus = createEnum("startStatus", WorkStatus.class); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> startStatusDecisionTime = createDateTime("startStatusDecisionTime", java.time.LocalDateTime.class); | ||
|
||
public final jikgong.domain.workdate.entity.QWorkDate workDate; | ||
|
||
public QHistory(String variable) { | ||
this(History.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QHistory(Path<? extends History> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QHistory(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QHistory(PathMetadata metadata, PathInits inits) { | ||
this(History.class, metadata, inits); | ||
} | ||
|
||
public QHistory(Class<? extends History> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.member = inits.isInitialized("member") ? new jikgong.domain.member.entity.QMember(forProperty("member"), inits.get("member")) : null; | ||
this.workDate = inits.isInitialized("workDate") ? new jikgong.domain.workdate.entity.QWorkDate(forProperty("workDate"), inits.get("workDate")) : null; | ||
} | ||
|
||
} | ||
|
41 changes: 41 additions & 0 deletions
41
src/main/generated/jikgong/domain/jobpost/entity/jobpost/QAvailableInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package jikgong.domain.jobpost.entity.jobpost; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QAvailableInfo is a Querydsl query type for AvailableInfo | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer") | ||
public class QAvailableInfo extends BeanPath<AvailableInfo> { | ||
|
||
private static final long serialVersionUID = -1970221195L; | ||
|
||
public static final QAvailableInfo availableInfo = new QAvailableInfo("availableInfo"); | ||
|
||
public final BooleanPath meal = createBoolean("meal"); | ||
|
||
public final EnumPath<Park> park = createEnum("park", Park.class); | ||
|
||
public final BooleanPath pickup = createBoolean("pickup"); | ||
|
||
public QAvailableInfo(String variable) { | ||
super(AvailableInfo.class, forVariable(variable)); | ||
} | ||
|
||
public QAvailableInfo(Path<? extends AvailableInfo> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QAvailableInfo(PathMetadata metadata) { | ||
super(AvailableInfo.class, metadata); | ||
} | ||
|
||
} | ||
|
106 changes: 106 additions & 0 deletions
106
src/main/generated/jikgong/domain/jobpost/entity/jobpost/QJobPost.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
package jikgong.domain.jobpost.entity.jobpost; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QJobPost is a Querydsl query type for JobPost | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QJobPost extends EntityPathBase<JobPost> { | ||
|
||
private static final long serialVersionUID = 704354523L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QJobPost jobPost = new QJobPost("jobPost"); | ||
|
||
public final jikgong.domain.common.QBaseEntity _super = new jikgong.domain.common.QBaseEntity(this); | ||
|
||
public final QAvailableInfo availableInfo; | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final DateTimePath<java.time.LocalDateTime> deletedAt = createDateTime("deletedAt", java.time.LocalDateTime.class); | ||
|
||
public final StringPath description = createString("description"); | ||
|
||
public final DatePath<java.time.LocalDate> endDate = createDate("endDate", java.time.LocalDate.class); | ||
|
||
public final TimePath<java.time.LocalTime> endTime = createTime("endTime", java.time.LocalTime.class); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final BooleanPath isTemporary = createBoolean("isTemporary"); | ||
|
||
public final QJobPostAddress jobPostAddress; | ||
|
||
public final ListPath<jikgong.domain.jobpost.entity.jobpostimage.JobPostImage, jikgong.domain.jobpost.entity.jobpostimage.QJobPostImage> jobPostImageList = this.<jikgong.domain.jobpost.entity.jobpostimage.JobPostImage, jikgong.domain.jobpost.entity.jobpostimage.QJobPostImage>createList("jobPostImageList", jikgong.domain.jobpost.entity.jobpostimage.JobPostImage.class, jikgong.domain.jobpost.entity.jobpostimage.QJobPostImage.class, PathInits.DIRECT2); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> lastModifiedDate = _super.lastModifiedDate; | ||
|
||
public final StringPath managerName = createString("managerName"); | ||
|
||
public final jikgong.domain.member.entity.QMember member; | ||
|
||
public final StringPath parkDetail = createString("parkDetail"); | ||
|
||
public final StringPath phone = createString("phone"); | ||
|
||
public final ListPath<jikgong.domain.jobpost.entity.pickup.Pickup, jikgong.domain.jobpost.entity.pickup.QPickup> pickupList = this.<jikgong.domain.jobpost.entity.pickup.Pickup, jikgong.domain.jobpost.entity.pickup.QPickup>createList("pickupList", jikgong.domain.jobpost.entity.pickup.Pickup.class, jikgong.domain.jobpost.entity.pickup.QPickup.class, PathInits.DIRECT2); | ||
|
||
public final StringPath preparation = createString("preparation"); | ||
|
||
public final jikgong.domain.project.entity.QProject project; | ||
|
||
public final NumberPath<Integer> recruitNum = createNumber("recruitNum", Integer.class); | ||
|
||
public final ListPath<jikgong.domain.scrap.entity.Scrap, jikgong.domain.scrap.entity.QScrap> scrapList = this.<jikgong.domain.scrap.entity.Scrap, jikgong.domain.scrap.entity.QScrap>createList("scrapList", jikgong.domain.scrap.entity.Scrap.class, jikgong.domain.scrap.entity.QScrap.class, PathInits.DIRECT2); | ||
|
||
public final DatePath<java.time.LocalDate> startDate = createDate("startDate", java.time.LocalDate.class); | ||
|
||
public final TimePath<java.time.LocalTime> startTime = createTime("startTime", java.time.LocalTime.class); | ||
|
||
public final EnumPath<jikgong.domain.workexperience.entity.Tech> tech = createEnum("tech", jikgong.domain.workexperience.entity.Tech.class); | ||
|
||
public final StringPath title = createString("title"); | ||
|
||
public final NumberPath<Integer> wage = createNumber("wage", Integer.class); | ||
|
||
public final ListPath<jikgong.domain.workdate.entity.WorkDate, jikgong.domain.workdate.entity.QWorkDate> workDateList = this.<jikgong.domain.workdate.entity.WorkDate, jikgong.domain.workdate.entity.QWorkDate>createList("workDateList", jikgong.domain.workdate.entity.WorkDate.class, jikgong.domain.workdate.entity.QWorkDate.class, PathInits.DIRECT2); | ||
|
||
public QJobPost(String variable) { | ||
this(JobPost.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QJobPost(Path<? extends JobPost> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QJobPost(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QJobPost(PathMetadata metadata, PathInits inits) { | ||
this(JobPost.class, metadata, inits); | ||
} | ||
|
||
public QJobPost(Class<? extends JobPost> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.availableInfo = inits.isInitialized("availableInfo") ? new QAvailableInfo(forProperty("availableInfo")) : null; | ||
this.jobPostAddress = inits.isInitialized("jobPostAddress") ? new QJobPostAddress(forProperty("jobPostAddress")) : null; | ||
this.member = inits.isInitialized("member") ? new jikgong.domain.member.entity.QMember(forProperty("member"), inits.get("member")) : null; | ||
this.project = inits.isInitialized("project") ? new jikgong.domain.project.entity.QProject(forProperty("project"), inits.get("project")) : null; | ||
} | ||
|
||
} | ||
|
Oops, something went wrong.