package com.qxueyou.scc.teach.subject.model.view;
|
|
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;
|
|
|
/**
|
* QLectureVideoV is a Querydsl query type for LectureVideoV
|
*/
|
@Generated("com.querydsl.codegen.EntitySerializer")
|
public class QLectureVideoV extends EntityPathBase<LectureVideoV> {
|
|
private static final long serialVersionUID = -21277154L;
|
|
public static final QLectureVideoV lectureVideoV = new QLectureVideoV("lectureVideoV");
|
|
public final StringPath lectureId = createString("lectureId");
|
|
public final StringPath name = createString("name");
|
|
public final NumberPath<Integer> seconds = createNumber("seconds", Integer.class);
|
|
public QLectureVideoV(String variable) {
|
super(LectureVideoV.class, forVariable(variable));
|
}
|
|
public QLectureVideoV(Path<? extends LectureVideoV> path) {
|
super(path.getType(), path.getMetadata());
|
}
|
|
public QLectureVideoV(PathMetadata metadata) {
|
super(LectureVideoV.class, metadata);
|
}
|
|
}
|