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

cn.cliveyuan.robin.generator.db.ColumnInfo Maven / Gradle / Ivy

package cn.cliveyuan.robin.generator.db;

import lombok.Data;

/**
 * 列信息
 *
 * @author Clive Yuan
 * @date 2020/10/28
 */
@Data
public class ColumnInfo {
    /**
     * 列名
     */
    private String name;
    /**
     * 类型
     */
    private String type;
    /**
     * 长度
     */
    private Integer length;
    /**
     * 能否为空
     */
    private Boolean nullable;
    /**
     * 备注
     */
    private String comment;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy