panda.dao.entity.annotation.Post Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
package panda.dao.entity.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 对象插入后的自动执行
*
* 本注解声明在一个 POJO 的数据库字段上(带有 '@Column' 注解的字段)
* 当插入一个对象之后,通过一个 SQL 从数据库中获取值,并赋予该字段。
*
* 比如一个自增的字段(数据库通过触发器和序列为其自动+1),插入后,可以通过一条 SQL 获取这个字段的值
*
* 注意: 你的字段只能允许是字符型的,或者是整数型的。否则会报错。
*
* @see panda.dao.entity.annotation.SQL
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
@Documented
public @interface Post {
SQL[] value() default {};
}