AI 个人简介生成器
This commit is contained in:
@@ -19,6 +19,8 @@ public class HotakeCvInfoDto {
|
||||
|
||||
@ApiModelProperty("姓名")
|
||||
private String name;
|
||||
@ApiModelProperty("出生日期")
|
||||
private String birthday;
|
||||
@ApiModelProperty("电话")
|
||||
private String phone;
|
||||
@ApiModelProperty("邮箱")
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.vetti.hotake.domain.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 个人简介生成器 返回对象
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakePersonalProfileGeneratorDto {
|
||||
|
||||
@ApiModelProperty("自我介绍")
|
||||
private String about;
|
||||
}
|
||||
@@ -16,4 +16,7 @@ public class VcLinksDto {
|
||||
|
||||
@ApiModelProperty("内容")
|
||||
private String content;
|
||||
|
||||
@ApiModelProperty("类型(例如:LinkedIn,Website)")
|
||||
private String dataType;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user