-
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 #83 from study-hub-inu/feat/SH-303-delete-all
Feat/sh 303 delete all
- Loading branch information
Showing
8 changed files
with
94 additions
and
7 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
build/generated/querydsl/kr/co/studyhubinu/studyhubserver/apply/domain/QRejectEntity.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,51 @@ | ||
package kr.co.studyhubinu.studyhubserver.apply.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; | ||
|
||
|
||
/** | ||
* QRejectEntity is a Querydsl query type for RejectEntity | ||
*/ | ||
@Generated("com.querydsl.codegen.DefaultEntitySerializer") | ||
public class QRejectEntity extends EntityPathBase<RejectEntity> { | ||
|
||
private static final long serialVersionUID = -1259208686L; | ||
|
||
public static final QRejectEntity rejectEntity = new QRejectEntity("rejectEntity"); | ||
|
||
public final kr.co.studyhubinu.studyhubserver.common.domain.QBaseTimeEntity _super = new kr.co.studyhubinu.studyhubserver.common.domain.QBaseTimeEntity(this); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> createdDate = _super.createdDate; | ||
|
||
public final NumberPath<Long> id = createNumber("id", Long.class); | ||
|
||
//inherited | ||
public final DateTimePath<java.time.LocalDateTime> modifiedDate = _super.modifiedDate; | ||
|
||
public final NumberPath<Long> rejectedUserId = createNumber("rejectedUserId", Long.class); | ||
|
||
public final StringPath rejectReason = createString("rejectReason"); | ||
|
||
public final NumberPath<Long> studyId = createNumber("studyId", Long.class); | ||
|
||
public QRejectEntity(String variable) { | ||
super(RejectEntity.class, forVariable(variable)); | ||
} | ||
|
||
public QRejectEntity(Path<? extends RejectEntity> path) { | ||
super(path.getType(), path.getMetadata()); | ||
} | ||
|
||
public QRejectEntity(PathMetadata metadata) { | ||
super(RejectEntity.class, metadata); | ||
} | ||
|
||
} | ||
|
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
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
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
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