개체분석 상태 값 수정

This commit is contained in:
2025-12-19 15:19:50 +09:00
parent abc2f20495
commit c8bd04f124
24 changed files with 596 additions and 1499 deletions

View File

@@ -232,14 +232,14 @@ export class MptModel extends BaseModel {
magnesium: number;
@Column({
name: 'creatinine',
name: 'creatine',
type: 'decimal',
precision: 10,
scale: 2,
nullable: true,
comment: '크레아틴',
})
creatinine: number;
creatine: number;
// Relations
@ManyToOne(() => FarmModel, { onDelete: 'CASCADE' })