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

com.github.wendao76.core.entity.ColumnObj Maven / Gradle / Ivy

package com.github.wendao76.core.entity;

import lombok.Data;

/**
 * 表字段属性描述
 * @author wendao76 .
 */
@Data
public class ColumnObj {
    /**
     * 注释
     */
    private String comment;
    /**
     * 数据类型
     */
    private String dataType;
    /**
     * 字段名称
     */
    private String name;
    /**
     * 默认值
     */
    private String defVal;
    /**
     * 数据长度
     */
    private Number length;
    /**
     * 最大值
     */
    private Integer max;

    /**
     * 检查项
     */
    private String checkVal;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy