feat: extend UserProfileUpdateRequest with city/industry/company/personalityTags/birthday

This commit is contained in:
2026-06-04 08:05:55 +08:00
parent b784942079
commit 059e7f8f52
@@ -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字符串)
*/