Skip to content

Commit

Permalink
fix: has_children 필드 누락 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sichoi42 committed Oct 6, 2024
1 parent ee7080f commit 9732766
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@


class UserInfoDto(BaseModel):
name: str = Field(default="최시원")
user_name: str = Field(default="최시원")
date_of_birth: date = Field(default="2000-02-21")
gender: Gender = Field(default=Gender.FEMALE)
has_children: bool = Field(default=False)
occupation: str = Field(default="프로그래머")
education_level: str = Field(default="대학교 재학")
marital_status: str = Field(default="미혼")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class UserInfoDto(BaseModel):
user_name: str = Field(default="최시원")
date_of_birth: date = Field(default="2000-02-21")
gender: Gender = Field(default=Gender.FEMALE)
has_children: bool = Field(default=False)
occupation: str = Field(default="프로그래머")
education_level: str = Field(default="대학교 재학")
marital_status: str = Field(default="미혼")
Expand Down

0 comments on commit 9732766

Please sign in to comment.