com.github.dreamroute.sqlprinter.starter.converter.def.EnumConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlprinter-spring-boot-starter Show documentation
Show all versions of sqlprinter-spring-boot-starter Show documentation
print sql use real value replace '?' in sql fragment.
package com.github.dreamroute.sqlprinter.starter.converter.def;
import com.github.dreamroute.mybatis.pro.base.enums.EnumMarker;
import com.github.dreamroute.sqlprinter.starter.anno.ValueConverter;
/**
* 枚举转换器
*
* @author w.dehai.2021/9/7.15:51
*/
public class EnumConverter implements ValueConverter {
@Override
public Object convert(Object value) {
if (value instanceof EnumMarker) {
value = ((EnumMarker) value).getValue();
}
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy