-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Wonjun You <[email protected]> Co-authored-by: koseonje <[email protected]>
- Loading branch information
1 parent
2258f62
commit 83ae9e9
Showing
104 changed files
with
2,339 additions
and
852 deletions.
There are no files selected for viewing
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
Binary file not shown.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
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
39 changes: 39 additions & 0 deletions
39
src/main/generated/ddingdong/ddingdongBE/common/QBaseEntity.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,39 @@ | ||
package ddingdong.ddingdongBE.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 = 654623242L; | ||
|
||
public static final QBaseEntity baseEntity = new QBaseEntity("baseEntity"); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> createdAt = createDateTime("createdAt", java.time.LocalDateTime.class); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> updatedAt = createDateTime("updatedAt", 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); | ||
} | ||
|
||
} | ||
|
73 changes: 73 additions & 0 deletions
73
src/main/generated/ddingdong/ddingdongBE/domain/activityreport/domain/QActivityReport.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,73 @@ | ||
package ddingdong.ddingdongBE.domain.activityreport.domain; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QActivityReport is a Querydsl query type for ActivityReport | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QActivityReport extends EntityPathBase<ActivityReport> { | ||
|
||
private static final long serialVersionUID = 1287698975L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QActivityReport activityReport = new QActivityReport("activityReport"); | ||
|
||
public final ddingdong.ddingdongBE.common.QBaseEntity _super = new ddingdong.ddingdongBE.common.QBaseEntity(this); | ||
|
||
public final ddingdong.ddingdongBE.domain.club.entity.QClub club; | ||
|
||
public final StringPath content = createString("content"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final DateTimePath<java.time.LocalDateTime> deletedAt = createDateTime("deletedAt", java.time.LocalDateTime.class); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> endDate = createDateTime("endDate", java.time.LocalDateTime.class); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final ListPath<Participant, QParticipant> participants = this.<Participant, QParticipant>createList("participants", Participant.class, QParticipant.class, PathInits.DIRECT2); | ||
|
||
public final StringPath place = createString("place"); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> startDate = createDateTime("startDate", java.time.LocalDateTime.class); | ||
|
||
public final StringPath term = createString("term"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt; | ||
|
||
public QActivityReport(String variable) { | ||
this(ActivityReport.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QActivityReport(Path<? extends ActivityReport> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QActivityReport(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QActivityReport(PathMetadata metadata, PathInits inits) { | ||
this(ActivityReport.class, metadata, inits); | ||
} | ||
|
||
public QActivityReport(Class<? extends ActivityReport> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.club = inits.isInitialized("club") ? new ddingdong.ddingdongBE.domain.club.entity.QClub(forProperty("club"), inits.get("club")) : null; | ||
} | ||
|
||
} | ||
|
45 changes: 45 additions & 0 deletions
45
...generated/ddingdong/ddingdongBE/domain/activityreport/domain/QActivityReportTermInfo.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,45 @@ | ||
package ddingdong.ddingdongBE.domain.activityreport.domain; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QActivityReportTermInfo is a Querydsl query type for ActivityReportTermInfo | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QActivityReportTermInfo extends EntityPathBase<ActivityReportTermInfo> { | ||
|
||
private static final long serialVersionUID = -149711239L; | ||
|
||
public static final QActivityReportTermInfo activityReportTermInfo = new QActivityReportTermInfo("activityReportTermInfo"); | ||
|
||
public final DateTimePath<java.time.LocalDateTime> deletedAt = createDateTime("deletedAt", java.time.LocalDateTime.class); | ||
|
||
public final DatePath<java.time.LocalDate> endDate = createDate("endDate", java.time.LocalDate.class); | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
public final DatePath<java.time.LocalDate> startDate = createDate("startDate", java.time.LocalDate.class); | ||
|
||
public final NumberPath<Integer> term = createNumber("term", Integer.class); | ||
|
||
public QActivityReportTermInfo(String variable) { | ||
super(ActivityReportTermInfo.class, forVariable(variable)); | ||
} | ||
|
||
public QActivityReportTermInfo(Path<? extends ActivityReportTermInfo> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QActivityReportTermInfo(PathMetadata metadata) { | ||
super(ActivityReportTermInfo.class, metadata); | ||
} | ||
|
||
} | ||
|
41 changes: 41 additions & 0 deletions
41
src/main/generated/ddingdong/ddingdongBE/domain/activityreport/domain/QParticipant.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 ddingdong.ddingdongBE.domain.activityreport.domain; | ||
|
||
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; | ||
|
||
|
||
/** | ||
* QParticipant is a Querydsl query type for Participant | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer") | ||
public class QParticipant extends BeanPath<Participant> { | ||
|
||
private static final long serialVersionUID = 670376887L; | ||
|
||
public static final QParticipant participant = new QParticipant("participant"); | ||
|
||
public final StringPath department = createString("department"); | ||
|
||
public final StringPath name = createString("name"); | ||
|
||
public final StringPath studentId = createString("studentId"); | ||
|
||
public QParticipant(String variable) { | ||
super(Participant.class, forVariable(variable)); | ||
} | ||
|
||
public QParticipant(Path<? extends Participant> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QParticipant(PathMetadata metadata) { | ||
super(Participant.class, metadata); | ||
} | ||
|
||
} | ||
|
Oops, something went wrong.