-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 가장 최근 식단에서 부족한 영양소 top3 조회 api 구현 완료
- Loading branch information
1 parent
3bf0354
commit 07c7a4b
Showing
4 changed files
with
80 additions
and
4 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/main/java/com/example/kusitmshackthon/domain/healthlog/standard/StandardHealthLog.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.example.kusitmshackthon.domain.healthlog.standard; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
public class StandardHealthLog { | ||
// 15세 여아 표준 영양 정보 | ||
Float protein = 45F; // 단백질(g) | ||
Float calcium = 800F; // 칼슘(mg) | ||
Float sodium = 1.5F; // 나트륨(mg) | ||
Float fe = 17F; // 철(mg) | ||
Float zinc = 9F; // 아연(mg) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters