cn.featherfly.component.sorm.mapping.PropertyColumnNameFactory Maven / Gradle / Ivy
package cn.featherfly.component.sorm.mapping;
import cn.featherfly.common.bean.BeanProperty;
/**
*
* PropertyColumnNameFactory
*
*
* @author 钟冀
*/
public interface PropertyColumnNameFactory {
/**
*
* 根据传入的属性返回对应的columnName
*
* @param beanProperty beanProperty
* @return columnName
*/
String getMappingColumnName(BeanProperty beanProperty);
}