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);
|
}
|
|
}
|