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

com.efeichong.generator.IndexColumn Maven / Gradle / Ivy

package com.efeichong.generator;

import lombok.Getter;
import lombok.Setter;

/**
 * @author lxk
 * @date 2020/11/16
 * @description 索引字段
 */
@Setter
@Getter
public class IndexColumn {
    /**
     * 索引的字段名
     */
    private String columnName;
    /**
     * 是否唯一约束 0否 1是
     */
    private Integer hasUnique = 0;
    /**
     * 索引名
     */
    private String indexName;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy