io.github.pleuvoir.sql.bean.ColumnExtend Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-metadata-plugin Show documentation
Show all versions of sql-metadata-plugin Show documentation
Execute SQL to return result set metadata easily.
package io.github.pleuvoir.sql.bean;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class ColumnExtend extends Column {
// 转换后为Java后的类型
private String convertedType;
// 驼峰格式属性名
private String field;
}