From b7849420798cd1ea58dd78a42d9c08a76ebdfa01 Mon Sep 17 00:00:00 2001 From: Peanut Date: Thu, 4 Jun 2026 08:05:23 +0800 Subject: [PATCH] feat: extend UserProfileCreateRequest with city/industry/company/personalityTags/birthday --- .../userprofile/UserProfileCreateRequest.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileCreateRequest.java b/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileCreateRequest.java index 60cc254..9cfaac4 100644 --- a/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileCreateRequest.java +++ b/backend-single/src/main/java/com/emotion/dto/request/userprofile/UserProfileCreateRequest.java @@ -85,6 +85,31 @@ public class UserProfileCreateRequest { */ private String idealLife; + /** + * 所在城市 + */ + private String city; + + /** + * 行业 + */ + private String industry; + + /** + * 公司 + */ + private String company; + + /** + * 性格标签 (JSON字符串) + */ + private String personalityTags; + + /** + * 生日 + */ + private LocalDate birthday; + /** * 生成的剧本列表 (JSON字符串) */