个人简历逻辑添加
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
package com.vetti.hotake.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import com.vetti.common.annotation.Excel;
|
||||
import com.vetti.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 简历信息对象 hotake_cv_info
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-02
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakeCvInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键ID */
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long id;
|
||||
|
||||
/** 用户ID */
|
||||
@ApiModelProperty("用户ID")
|
||||
@Excel(name = "用户ID")
|
||||
private Long userId;
|
||||
|
||||
/** 简历名称 */
|
||||
@ApiModelProperty("简历名称")
|
||||
@Excel(name = "简历名称")
|
||||
private String cvName;
|
||||
|
||||
/** 简历类型(如:image/jpeg, application/pdf等) */
|
||||
@ApiModelProperty("简历类型(doc/pdf)")
|
||||
private String cvFileType;
|
||||
|
||||
/** 简历地址 */
|
||||
@ApiModelProperty("简历地址")
|
||||
@Excel(name = "简历地址")
|
||||
private String cvUrl;
|
||||
|
||||
/** 状态(0 禁用,1 启用) */
|
||||
@ApiModelProperty("状态(0 禁用,1 启用)")
|
||||
@Excel(name = "状态", readConverterExp = "0=,禁=用,1,启=用")
|
||||
private String status;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user