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

com.github.hdy.common.entity.ColumnEntity Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.hdy.common.entity;

import lombok.Data;

/**
 * 列属性
 *
 * @author 贺大爷
 * @date 2018/2/6
 */
@Data
public class ColumnEntity {
    /**
     * 列表
     */
    private String columnName;
    /**
     * 数据类型
     */
    private String dataType;
    /**
     * 备注
     */
    private String comments;

    /**
     * 驼峰属性
     */
    private String caseAttrName;
    /**
     * 普通属性
     */
    private String lowerAttrName;
    /**
     * 属性类型
     */
    private String attrType;
    /**
     * 其他信息。
     */
    private String extra;
    /**
     * 是否允许为空
     */
    private String isNullBle;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy