mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
18 lines
251 B
Java
18 lines
251 B
Java
|
|
public class Entity {
|
|
|
|
private String name;
|
|
|
|
public static String test(Object o) {
|
|
return null;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
}
|