entity 연결 수정 및 코드정리

This commit is contained in:
2025-12-29 13:55:43 +09:00
parent 5204000d34
commit 9de32fe394
15 changed files with 321 additions and 978 deletions

View File

@@ -723,11 +723,9 @@ export class GenomeService {
traitVal: detail.traitVal, // 형질 측정값
breedVal: detail.traitEbv, // EBV (추정육종가)
percentile: detail.traitPercentile, // 백분위 순위
traitInfo: {
traitNm: detail.traitName, // 형질명
traitCtgry: getTraitCategory(detail.traitName || ''), // 카테고리 (공통 함수 사용)
traitDesc: '', // 형질 설명 (빈값)
},
traitName: detail.traitName, // 형질명 (평평한 구조)
traitCategory: getTraitCategory(detail.traitName || ''), // 카테고리
traitDesc: '', // 형질 설명 (빈값)
})),
}];
}