mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-16 21:01:10 +08:00
25 lines
723 B
Java
25 lines
723 B
Java
/**
|
|
*
|
|
*/
|
|
package com.mysema.query;
|
|
|
|
import com.mysema.query.sql.RelationalPathBase;
|
|
import com.mysema.query.sql.Table;
|
|
import com.mysema.query.types.PathMetadataFactory;
|
|
import com.mysema.query.types.path.NumberPath;
|
|
import com.mysema.query.types.path.StringPath;
|
|
|
|
@Table("GENERATED_KEYS")
|
|
public class QGeneratedKeysEntity extends RelationalPathBase<QGeneratedKeysEntity>{
|
|
|
|
private static final long serialVersionUID = 2002306246819687158L;
|
|
|
|
public final NumberPath<Integer> id = createNumber("ID", Integer.class);
|
|
|
|
public final StringPath name = createString("NAME");
|
|
|
|
public QGeneratedKeysEntity(String name) {
|
|
super(QGeneratedKeysEntity.class, PathMetadataFactory.forVariable(name));
|
|
}
|
|
|
|
} |