-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from team9502/dev
deployment
- Loading branch information
Showing
48 changed files
with
1,904 additions
and
22 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
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 |
---|---|---|
|
@@ -36,3 +36,6 @@ out/ | |
### VS Code ### | ||
.vscode/ | ||
.DS_Store | ||
|
||
### QueryDSL ### | ||
/src/main/generated/ |
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
63 changes: 63 additions & 0 deletions
63
src/main/generated/team9502/sinchulgwinong/domain/board/entity/QBoard.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,63 @@ | ||
package team9502.sinchulgwinong.domain.board.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; | ||
|
||
|
||
/** | ||
* QBoard is a Querydsl query type for Board | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QBoard extends EntityPathBase<Board> { | ||
|
||
private static final long serialVersionUID = -80206607L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QBoard board = new QBoard("board"); | ||
|
||
public final team9502.sinchulgwinong.global.entity.QBaseTimeEntity _super = new team9502.sinchulgwinong.global.entity.QBaseTimeEntity(this); | ||
|
||
public final StringPath boardContent = createString("boardContent"); | ||
|
||
public final NumberPath<Long> boardId = createNumber("boardId", Long.class); | ||
|
||
public final StringPath boardTitle = createString("boardTitle"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedAt = _super.modifiedAt; | ||
|
||
public final team9502.sinchulgwinong.domain.user.entity.QUser user; | ||
|
||
public QBoard(String variable) { | ||
this(Board.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QBoard(Path<? extends Board> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QBoard(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QBoard(PathMetadata metadata, PathInits inits) { | ||
this(Board.class, metadata, inits); | ||
} | ||
|
||
public QBoard(Class<? extends Board> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.user = inits.isInitialized("user") ? new team9502.sinchulgwinong.domain.user.entity.QUser(forProperty("user"), inits.get("user")) : null; | ||
} | ||
|
||
} | ||
|
64 changes: 64 additions & 0 deletions
64
src/main/generated/team9502/sinchulgwinong/domain/comment/entity/QComment.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,64 @@ | ||
package team9502.sinchulgwinong.domain.comment.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; | ||
|
||
|
||
/** | ||
* QComment is a Querydsl query type for Comment | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QComment extends EntityPathBase<Comment> { | ||
|
||
private static final long serialVersionUID = -490280559L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QComment comment = new QComment("comment"); | ||
|
||
public final team9502.sinchulgwinong.global.entity.QBaseTimeEntity _super = new team9502.sinchulgwinong.global.entity.QBaseTimeEntity(this); | ||
|
||
public final team9502.sinchulgwinong.domain.board.entity.QBoard board; | ||
|
||
public final StringPath commentContent = createString("commentContent"); | ||
|
||
public final NumberPath<Long> commentId = createNumber("commentId", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedAt = _super.modifiedAt; | ||
|
||
public final team9502.sinchulgwinong.domain.user.entity.QUser user; | ||
|
||
public QComment(String variable) { | ||
this(Comment.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QComment(Path<? extends Comment> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QComment(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QComment(PathMetadata metadata, PathInits inits) { | ||
this(Comment.class, metadata, inits); | ||
} | ||
|
||
public QComment(Class<? extends Comment> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.board = inits.isInitialized("board") ? new team9502.sinchulgwinong.domain.board.entity.QBoard(forProperty("board"), inits.get("board")) : null; | ||
this.user = inits.isInitialized("user") ? new team9502.sinchulgwinong.domain.user.entity.QUser(forProperty("user"), inits.get("user")) : null; | ||
} | ||
|
||
} | ||
|
79 changes: 79 additions & 0 deletions
79
src/main/generated/team9502/sinchulgwinong/domain/companyUser/entity/QCompanyUser.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,79 @@ | ||
package team9502.sinchulgwinong.domain.companyUser.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; | ||
|
||
|
||
/** | ||
* QCompanyUser is a Querydsl query type for CompanyUser | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QCompanyUser extends EntityPathBase<CompanyUser> { | ||
|
||
private static final long serialVersionUID = -1362447631L; | ||
|
||
private static final PathInits INITS = PathInits.DIRECT2; | ||
|
||
public static final QCompanyUser companyUser = new QCompanyUser("companyUser"); | ||
|
||
public final team9502.sinchulgwinong.global.entity.QBaseTimeEntity _super = new team9502.sinchulgwinong.global.entity.QBaseTimeEntity(this); | ||
|
||
public final StringPath cpEmail = createString("cpEmail"); | ||
|
||
public final StringPath cpName = createString("cpName"); | ||
|
||
public final StringPath cpNum = createString("cpNum"); | ||
|
||
public final StringPath cpPassword = createString("cpPassword"); | ||
|
||
public final StringPath cpPhoneNumber = createString("cpPhoneNumber"); | ||
|
||
public final NumberPath<Long> cpUserId = createNumber("cpUserId", Long.class); | ||
|
||
public final StringPath cpUsername = createString("cpUsername"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt; | ||
|
||
public final StringPath description = createString("description"); | ||
|
||
public final NumberPath<Integer> employeeCount = createNumber("employeeCount", Integer.class); | ||
|
||
public final DatePath<java.time.LocalDate> foundationDate = createDate("foundationDate", java.time.LocalDate.class); | ||
|
||
public final BooleanPath hiringStatus = createBoolean("hiringStatus"); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedAt = _super.modifiedAt; | ||
|
||
public final team9502.sinchulgwinong.domain.point.entity.QPoint point; | ||
|
||
public QCompanyUser(String variable) { | ||
this(CompanyUser.class, forVariable(variable), INITS); | ||
} | ||
|
||
public QCompanyUser(Path<? extends CompanyUser> path) { | ||
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS)); | ||
} | ||
|
||
public QCompanyUser(PathMetadata metadata) { | ||
this(metadata, PathInits.getFor(metadata, INITS)); | ||
} | ||
|
||
public QCompanyUser(PathMetadata metadata, PathInits inits) { | ||
this(CompanyUser.class, metadata, inits); | ||
} | ||
|
||
public QCompanyUser(Class<? extends CompanyUser> type, PathMetadata metadata, PathInits inits) { | ||
super(type, metadata, inits); | ||
this.point = inits.isInitialized("point") ? new team9502.sinchulgwinong.domain.point.entity.QPoint(forProperty("point")) : null; | ||
} | ||
|
||
} | ||
|
39 changes: 39 additions & 0 deletions
39
src/main/generated/team9502/sinchulgwinong/domain/point/entity/QPoint.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 team9502.sinchulgwinong.domain.point.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; | ||
|
||
|
||
/** | ||
* QPoint is a Querydsl query type for Point | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QPoint extends EntityPathBase<Point> { | ||
|
||
private static final long serialVersionUID = 2130037041L; | ||
|
||
public static final QPoint point1 = new QPoint("point1"); | ||
|
||
public final NumberPath<Integer> point = createNumber("point", Integer.class); | ||
|
||
public final NumberPath<Long> pointId = createNumber("pointId", Long.class); | ||
|
||
public QPoint(String variable) { | ||
super(Point.class, forVariable(variable)); | ||
} | ||
|
||
public QPoint(Path<? extends Point> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QPoint(PathMetadata metadata) { | ||
super(Point.class, metadata); | ||
} | ||
|
||
} | ||
|
Oops, something went wrong.