Bugfix on EnumMapperFactory

This commit is contained in:
MangKyu
2022-02-01 04:21:39 +09:00
parent dd369ec2cc
commit 1115ca52f1

View File

@@ -42,6 +42,7 @@ public class EnumMapperFactory {
.code(enumMapperType.name()) .code(enumMapperType.name())
.title(enumMapperType.getTitle()) .title(enumMapperType.getTitle())
.desc(enumMapperType.getDesc()) .desc(enumMapperType.getDesc())
.expose(enumMapperType.isExpose())
.build(); .build();
} }