feat: extend UserProfile entity with city/industry/company/personalityTags/birthday
This commit is contained in:
@@ -115,6 +115,36 @@ public class UserProfile extends BaseEntity {
|
||||
@TableField("ideal_life")
|
||||
private String idealLife;
|
||||
|
||||
/**
|
||||
* 所在城市
|
||||
*/
|
||||
@TableField("city")
|
||||
private String city;
|
||||
|
||||
/**
|
||||
* 行业
|
||||
*/
|
||||
@TableField("industry")
|
||||
private String industry;
|
||||
|
||||
/**
|
||||
* 公司
|
||||
*/
|
||||
@TableField("company")
|
||||
private String company;
|
||||
|
||||
/**
|
||||
* 性格标签 (JSON字符串)
|
||||
*/
|
||||
@TableField("personality_tags")
|
||||
private String personalityTags;
|
||||
|
||||
/**
|
||||
* 生日
|
||||
*/
|
||||
@TableField("birthday")
|
||||
private LocalDate birthday;
|
||||
|
||||
/**
|
||||
* 生成的剧本列表 (JSON字符串)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user