mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
16 lines
249 B
Java
Executable File
16 lines
249 B
Java
Executable File
package test;
|
|
import java.math.BigDecimal;
|
|
|
|
import com.mysema.query.annotations.QueryEntity;
|
|
|
|
|
|
@QueryEntity
|
|
public class Test {
|
|
|
|
private String property;
|
|
|
|
private int intProperty;
|
|
|
|
private BigDecimal bigDecimal;
|
|
}
|