派生自 projectDept/qhighschool

胡仁荣
2022-10-31 fe7381d6e8ec1f427408de0297ac7f41533202f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.qxueyou.scc.base.model;
 
import static com.querydsl.core.types.PathMetadataFactory.*;
 
import com.querydsl.core.types.dsl.*;
 
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
 
 
/**
 * QWbCacheKey is a Querydsl query type for WbCacheKey
 */
@Generated("com.querydsl.codegen.EntitySerializer")
public class QWbCacheKey extends EntityPathBase<WbCacheKey> {
 
    private static final long serialVersionUID = 905065340L;
 
    public static final QWbCacheKey wbCacheKey = new QWbCacheKey("wbCacheKey");
 
    public final StringPath cacheKey = createString("cacheKey");
 
    public final StringPath cacheKeyId = createString("cacheKeyId");
 
    public final DateTimePath<java.util.Date> createTime = createDateTime("createTime", java.util.Date.class);
 
    public final BooleanPath deleteFlag = createBoolean("deleteFlag");
 
    public final StringPath objectId = createString("objectId");
 
    public final NumberPath<Integer> objectType = createNumber("objectType", Integer.class);
 
    public final StringPath subjectId = createString("subjectId");
 
    public QWbCacheKey(String variable) {
        super(WbCacheKey.class, forVariable(variable));
    }
 
    public QWbCacheKey(Path<? extends WbCacheKey> path) {
        super(path.getType(), path.getMetadata());
    }
 
    public QWbCacheKey(PathMetadata metadata) {
        super(WbCacheKey.class, metadata);
    }
 
}