diff --git a/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileUpdateRequest.java b/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileUpdateRequest.java index b5b68ac..4c0375b 100644 --- a/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileUpdateRequest.java +++ b/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileUpdateRequest.java @@ -89,6 +89,31 @@ public class UserProfileUpdateRequest { */ private String idealLife; + /** + * 所在城市 + */ + private String city; + + /** + * 行业 + */ + private String industry; + + /** + * 公司 + */ + private String company; + + /** + * 性格标签 (JSON字符串) + */ + private String personalityTags; + + /** + * 生日 + */ + private LocalDate birthday; + /** * 生成的剧本列表 (JSON字符串) */