All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.bootx.table.modify.mysql.entity.MySqlTableIndex Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
package cn.bootx.table.modify.mysql.entity;

import lombok.Getter;
import lombok.Setter;

/**
 * Mysql 索引信息表(statistics)
 * @author xxm
 * @since 2023/4/10
 */
@Getter
@Setter
public class MySqlTableIndex {

    /** 是否不能重复 */
    private boolean nonUnique;

    /** 索引的名称 */
    private String indexName;

    /** 列名称 */
    private String columnName;

    /** 索引类型(BTREE,FULLTEXT,HASH,RTREE) */
    private String indexType;

    /** 索引注释 */
    private String indexComment;

    /** 联合索引中的列序列号 以1开头 */
    private Integer seqInIndex;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy