cn.bootx.table.modify.mysql.annotation.DbMySqlIndexes Maven / Gradle / Ivy
package cn.bootx.table.modify.mysql.annotation;
import java.lang.annotation.*;
/**
* MYSQL字段索引组
* @author xxm
* @since 2023/4/10
*/
@Target({ElementType.TYPE,ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface DbMySqlIndexes {
/**
* MYSQL字段索引组
*/
DbMySqlIndex[] value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy