mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
15 lines
196 B
Java
15 lines
196 B
Java
package com.mysema.query.apt;
|
|
|
|
import java.sql.Date;
|
|
|
|
import com.mysema.query.annotations.QueryEntity;
|
|
|
|
@QueryEntity
|
|
public class EntityWithExtensions {
|
|
|
|
String id;
|
|
|
|
Date date;
|
|
|
|
}
|