@Target(value=FIELD) @Retention(value=RUNTIME) public @interface JustFetch
eg:
@ JustFetch("CONCAT(fisrt_name,last_name)") //multiple tables maybe need bring the table name
private String fullname;
--> select CONCAT(fisrt_name,last_name) as fullname
map field name and column name,but can not transform to where part
eg:
@ JustFetch("name")
private String name2;
-->select name as name2
public abstract String value
Copyright © 2025. All rights reserved.