diff --git a/backend-single/src/main/java/com/emotion/dto/response/userprofile/UserProfileResponse.java b/backend-single/src/main/java/com/emotion/dto/response/userprofile/UserProfileResponse.java index 54cf2d5..332596f 100644 --- a/backend-single/src/main/java/com/emotion/dto/response/userprofile/UserProfileResponse.java +++ b/backend-single/src/main/java/com/emotion/dto/response/userprofile/UserProfileResponse.java @@ -104,6 +104,32 @@ public class UserProfileResponse { */ private String idealLife; + /** + * 所在城市 + */ + private String city; + + /** + * 行业 + */ + private String industry; + + /** + * 公司 + */ + private String company; + + /** + * 性格标签 (JSON字符串) + */ + private String personalityTags; + + /** + * 生日 + */ + @JsonFormat(pattern = "yyyy-MM-dd") + private LocalDate birthday; + /** * 生成的剧本列表 (JSON字符串) */