모델관리 API 영문버전 로직 수정
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user