모델관리 API 영문버전 로직 수정

This commit is contained in:
2026-05-12 14:51:18 +09:00
parent 154db0ac27
commit fbef92af55
3 changed files with 33 additions and 12 deletions

View File

@@ -318,7 +318,7 @@ public class DatasetDto {
public String getDataTypeName(String groupTitleCd) {
LearnDataType type = Enums.fromId(LearnDataType.class, groupTitleCd);
return type == null ? null : type.getText();
return type == null ? null : (HeaderUtil.isEnglishRequest() ? type.getId() : type.getText());
}
public String getYear() {