Skip to content

Commit 074bb57

Browse files
사용자 정보 API 필드 이름 통일 및 put preferType 추가
사용자 정보 API 필드 이름 통일 및 put preferType 추가
2 parents e68fb5a + b3037cb commit 074bb57

File tree

16 files changed

+764
-7
lines changed

16 files changed

+764
-7
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package learningFlow.learningFlow_BE.domain;
2+
3+
import static com.querydsl.core.types.PathMetadataFactory.*;
4+
5+
import com.querydsl.core.types.dsl.*;
6+
7+
import com.querydsl.core.types.PathMetadata;
8+
import javax.annotation.processing.Generated;
9+
import com.querydsl.core.types.Path;
10+
11+
12+
/**
13+
* QBaseEntity is a Querydsl query type for BaseEntity
14+
*/
15+
@Generated("com.querydsl.codegen.DefaultSupertypeSerializer")
16+
public class QBaseEntity extends EntityPathBase<BaseEntity> {
17+
18+
private static final long serialVersionUID = -301952604L;
19+
20+
public static final QBaseEntity baseEntity = new QBaseEntity("baseEntity");
21+
22+
public final DateTimePath<java.time.LocalDateTime> createdAt = createDateTime("createdAt", java.time.LocalDateTime.class);
23+
24+
public final DateTimePath<java.time.LocalDateTime> updatedAt = createDateTime("updatedAt", java.time.LocalDateTime.class);
25+
26+
public QBaseEntity(String variable) {
27+
super(BaseEntity.class, forVariable(variable));
28+
}
29+
30+
public QBaseEntity(Path<? extends BaseEntity> path) {
31+
super(path.getType(), path.getMetadata());
32+
}
33+
34+
public QBaseEntity(PathMetadata metadata) {
35+
super(BaseEntity.class, metadata);
36+
}
37+
38+
}
39+
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
package learningFlow.learningFlow_BE.domain;
2+
3+
import static com.querydsl.core.types.PathMetadataFactory.*;
4+
5+
import com.querydsl.core.types.dsl.*;
6+
7+
import com.querydsl.core.types.PathMetadata;
8+
import javax.annotation.processing.Generated;
9+
import com.querydsl.core.types.Path;
10+
import com.querydsl.core.types.dsl.PathInits;
11+
12+
13+
/**
14+
* QCollection is a Querydsl query type for Collection
15+
*/
16+
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
17+
public class QCollection extends EntityPathBase<Collection> {
18+
19+
private static final long serialVersionUID = -819230162L;
20+
21+
public static final QCollection collection = new QCollection("collection");
22+
23+
public final QBaseEntity _super = new QBaseEntity(this);
24+
25+
public final NumberPath<Integer> amount = createNumber("amount", Integer.class);
26+
27+
public final NumberPath<Integer> bookmarkCount = createNumber("bookmarkCount", Integer.class);
28+
29+
public final StringPath collectionImgUrl = createString("collectionImgUrl");
30+
31+
//inherited
32+
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt;
33+
34+
public final StringPath creator = createString("creator");
35+
36+
public final StringPath detailInformation = createString("detailInformation");
37+
38+
public final ListPath<Integer, NumberPath<Integer>> difficulty = this.<Integer, NumberPath<Integer>>createList("difficulty", Integer.class, NumberPath.class, PathInits.DIRECT2);
39+
40+
public final ListPath<CollectionEpisode, QCollectionEpisode> episodes = this.<CollectionEpisode, QCollectionEpisode>createList("episodes", CollectionEpisode.class, QCollectionEpisode.class, PathInits.DIRECT2);
41+
42+
public final NumberPath<Long> id = createNumber("id", Long.class);
43+
44+
public final EnumPath<learningFlow.learningFlow_BE.domain.enums.InterestField> interestField = createEnum("interestField", learningFlow.learningFlow_BE.domain.enums.InterestField.class);
45+
46+
public final ListPath<String, StringPath> keywords = this.<String, StringPath>createList("keywords", String.class, StringPath.class, PathInits.DIRECT2);
47+
48+
public final NumberPath<Integer> resourceTypeRatio = createNumber("resourceTypeRatio", Integer.class);
49+
50+
public final StringPath title = createString("title");
51+
52+
//inherited
53+
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt;
54+
55+
public final ListPath<UserCollection, QUserCollection> userCollections = this.<UserCollection, QUserCollection>createList("userCollections", UserCollection.class, QUserCollection.class, PathInits.DIRECT2);
56+
57+
public QCollection(String variable) {
58+
super(Collection.class, forVariable(variable));
59+
}
60+
61+
public QCollection(Path<? extends Collection> path) {
62+
super(path.getType(), path.getMetadata());
63+
}
64+
65+
public QCollection(PathMetadata metadata) {
66+
super(Collection.class, metadata);
67+
}
68+
69+
}
70+
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
package learningFlow.learningFlow_BE.domain;
2+
3+
import static com.querydsl.core.types.PathMetadataFactory.*;
4+
5+
import com.querydsl.core.types.dsl.*;
6+
7+
import com.querydsl.core.types.PathMetadata;
8+
import javax.annotation.processing.Generated;
9+
import com.querydsl.core.types.Path;
10+
import com.querydsl.core.types.dsl.PathInits;
11+
12+
13+
/**
14+
* QCollectionEpisode is a Querydsl query type for CollectionEpisode
15+
*/
16+
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
17+
public class QCollectionEpisode extends EntityPathBase<CollectionEpisode> {
18+
19+
private static final long serialVersionUID = -297427987L;
20+
21+
private static final PathInits INITS = PathInits.DIRECT2;
22+
23+
public static final QCollectionEpisode collectionEpisode = new QCollectionEpisode("collectionEpisode");
24+
25+
public final QCollection collection;
26+
27+
public final StringPath episodeName = createString("episodeName");
28+
29+
public final NumberPath<Integer> episodeNumber = createNumber("episodeNumber", Integer.class);
30+
31+
public final NumberPath<Long> id = createNumber("id", Long.class);
32+
33+
public final QResource resource;
34+
35+
public QCollectionEpisode(String variable) {
36+
this(CollectionEpisode.class, forVariable(variable), INITS);
37+
}
38+
39+
public QCollectionEpisode(Path<? extends CollectionEpisode> path) {
40+
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
41+
}
42+
43+
public QCollectionEpisode(PathMetadata metadata) {
44+
this(metadata, PathInits.getFor(metadata, INITS));
45+
}
46+
47+
public QCollectionEpisode(PathMetadata metadata, PathInits inits) {
48+
this(CollectionEpisode.class, metadata, inits);
49+
}
50+
51+
public QCollectionEpisode(Class<? extends CollectionEpisode> type, PathMetadata metadata, PathInits inits) {
52+
super(type, metadata, inits);
53+
this.collection = inits.isInitialized("collection") ? new QCollection(forProperty("collection")) : null;
54+
this.resource = inits.isInitialized("resource") ? new QResource(forProperty("resource")) : null;
55+
}
56+
57+
}
58+
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
package learningFlow.learningFlow_BE.domain;
2+
3+
import static com.querydsl.core.types.PathMetadataFactory.*;
4+
5+
import com.querydsl.core.types.dsl.*;
6+
7+
import com.querydsl.core.types.PathMetadata;
8+
import javax.annotation.processing.Generated;
9+
import com.querydsl.core.types.Path;
10+
import com.querydsl.core.types.dsl.PathInits;
11+
12+
13+
/**
14+
* QEmailVerificationToken is a Querydsl query type for EmailVerificationToken
15+
*/
16+
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
17+
public class QEmailVerificationToken extends EntityPathBase<EmailVerificationToken> {
18+
19+
private static final long serialVersionUID = -1162432526L;
20+
21+
private static final PathInits INITS = PathInits.DIRECT2;
22+
23+
public static final QEmailVerificationToken emailVerificationToken = new QEmailVerificationToken("emailVerificationToken");
24+
25+
public final QBaseEntity _super = new QBaseEntity(this);
26+
27+
//inherited
28+
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt;
29+
30+
public final StringPath email = createString("email");
31+
32+
public final DateTimePath<java.time.LocalDateTime> expiryDate = createDateTime("expiryDate", java.time.LocalDateTime.class);
33+
34+
public final StringPath password = createString("password");
35+
36+
public final StringPath token = createString("token");
37+
38+
//inherited
39+
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt;
40+
41+
public final QUser user;
42+
43+
public final BooleanPath verified = createBoolean("verified");
44+
45+
public QEmailVerificationToken(String variable) {
46+
this(EmailVerificationToken.class, forVariable(variable), INITS);
47+
}
48+
49+
public QEmailVerificationToken(Path<? extends EmailVerificationToken> path) {
50+
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
51+
}
52+
53+
public QEmailVerificationToken(PathMetadata metadata) {
54+
this(metadata, PathInits.getFor(metadata, INITS));
55+
}
56+
57+
public QEmailVerificationToken(PathMetadata metadata, PathInits inits) {
58+
this(EmailVerificationToken.class, metadata, inits);
59+
}
60+
61+
public QEmailVerificationToken(Class<? extends EmailVerificationToken> type, PathMetadata metadata, PathInits inits) {
62+
super(type, metadata, inits);
63+
this.user = inits.isInitialized("user") ? new QUser(forProperty("user")) : null;
64+
}
65+
66+
}
67+
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
package learningFlow.learningFlow_BE.domain;
2+
3+
import static com.querydsl.core.types.PathMetadataFactory.*;
4+
5+
import com.querydsl.core.types.dsl.*;
6+
7+
import com.querydsl.core.types.PathMetadata;
8+
import javax.annotation.processing.Generated;
9+
import com.querydsl.core.types.Path;
10+
import com.querydsl.core.types.dsl.PathInits;
11+
12+
13+
/**
14+
* QMemo is a Querydsl query type for Memo
15+
*/
16+
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
17+
public class QMemo extends EntityPathBase<Memo> {
18+
19+
private static final long serialVersionUID = -1386685238L;
20+
21+
private static final PathInits INITS = PathInits.DIRECT2;
22+
23+
public static final QMemo memo = new QMemo("memo");
24+
25+
public final QBaseEntity _super = new QBaseEntity(this);
26+
27+
public final StringPath contents = createString("contents");
28+
29+
//inherited
30+
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt;
31+
32+
public final QMemoId id;
33+
34+
//inherited
35+
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt;
36+
37+
public QMemo(String variable) {
38+
this(Memo.class, forVariable(variable), INITS);
39+
}
40+
41+
public QMemo(Path<? extends Memo> path) {
42+
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
43+
}
44+
45+
public QMemo(PathMetadata metadata) {
46+
this(metadata, PathInits.getFor(metadata, INITS));
47+
}
48+
49+
public QMemo(PathMetadata metadata, PathInits inits) {
50+
this(Memo.class, metadata, inits);
51+
}
52+
53+
public QMemo(Class<? extends Memo> type, PathMetadata metadata, PathInits inits) {
54+
super(type, metadata, inits);
55+
this.id = inits.isInitialized("id") ? new QMemoId(forProperty("id")) : null;
56+
}
57+
58+
}
59+
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package learningFlow.learningFlow_BE.domain;
2+
3+
import static com.querydsl.core.types.PathMetadataFactory.*;
4+
5+
import com.querydsl.core.types.dsl.*;
6+
7+
import com.querydsl.core.types.PathMetadata;
8+
import javax.annotation.processing.Generated;
9+
import com.querydsl.core.types.Path;
10+
11+
12+
/**
13+
* QMemoId is a Querydsl query type for MemoId
14+
*/
15+
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
16+
public class QMemoId extends BeanPath<MemoId> {
17+
18+
private static final long serialVersionUID = -1164649595L;
19+
20+
public static final QMemoId memoId = new QMemoId("memoId");
21+
22+
public final NumberPath<Long> collectionEpisodeId = createNumber("collectionEpisodeId", Long.class);
23+
24+
public final StringPath userId = createString("userId");
25+
26+
public QMemoId(String variable) {
27+
super(MemoId.class, forVariable(variable));
28+
}
29+
30+
public QMemoId(Path<? extends MemoId> path) {
31+
super(path.getType(), path.getMetadata());
32+
}
33+
34+
public QMemoId(PathMetadata metadata) {
35+
super(MemoId.class, metadata);
36+
}
37+
38+
}
39+
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
package learningFlow.learningFlow_BE.domain;
2+
3+
import static com.querydsl.core.types.PathMetadataFactory.*;
4+
5+
import com.querydsl.core.types.dsl.*;
6+
7+
import com.querydsl.core.types.PathMetadata;
8+
import javax.annotation.processing.Generated;
9+
import com.querydsl.core.types.Path;
10+
import com.querydsl.core.types.dsl.PathInits;
11+
12+
13+
/**
14+
* QPasswordResetToken is a Querydsl query type for PasswordResetToken
15+
*/
16+
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
17+
public class QPasswordResetToken extends EntityPathBase<PasswordResetToken> {
18+
19+
private static final long serialVersionUID = -1219280267L;
20+
21+
private static final PathInits INITS = PathInits.DIRECT2;
22+
23+
public static final QPasswordResetToken passwordResetToken = new QPasswordResetToken("passwordResetToken");
24+
25+
public final QBaseEntity _super = new QBaseEntity(this);
26+
27+
//inherited
28+
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt;
29+
30+
public final DateTimePath<java.time.LocalDateTime> expiryDate = createDateTime("expiryDate", java.time.LocalDateTime.class);
31+
32+
public final StringPath token = createString("token");
33+
34+
//inherited
35+
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt;
36+
37+
public final QUser user;
38+
39+
public QPasswordResetToken(String variable) {
40+
this(PasswordResetToken.class, forVariable(variable), INITS);
41+
}
42+
43+
public QPasswordResetToken(Path<? extends PasswordResetToken> path) {
44+
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
45+
}
46+
47+
public QPasswordResetToken(PathMetadata metadata) {
48+
this(metadata, PathInits.getFor(metadata, INITS));
49+
}
50+
51+
public QPasswordResetToken(PathMetadata metadata, PathInits inits) {
52+
this(PasswordResetToken.class, metadata, inits);
53+
}
54+
55+
public QPasswordResetToken(Class<? extends PasswordResetToken> type, PathMetadata metadata, PathInits inits) {
56+
super(type, metadata, inits);
57+
this.user = inits.isInitialized("user") ? new QUser(forProperty("user")) : null;
58+
}
59+
60+
}
61+

0 commit comments

Comments
 (0)