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

io.github.pleuvoir.sql.bean.ColumnExtend Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.github.pleuvoir.sql.bean;

public class ColumnExtend extends Column {

	// 转换后为Java后的类型
	private String convertedType;

	// 驼峰格式属性名
	private String field;

	public String getConvertedType() {
		return convertedType;
	}

	public void setConvertedType(String convertedType) {
		this.convertedType = convertedType;
	}

	public String getField() {
		return field;
	}

	public void setField(String field) {
		this.field = field;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy