com.yixsoft.support.mybatis.autosql.annotations.StaticUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yixsoft-batis Show documentation
Show all versions of yixsoft-batis Show documentation
YixSoft MyBatis AutoSql Plugin
package com.yixsoft.support.mybatis.autosql.annotations;
import java.lang.annotation.*;
/**
* Create by davep at 2019-09-09 17:15
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@AutoSql(value = SqlType.UPDATE)
public @interface StaticUpdate {
String[] value() default {};
}