添加行为记录表
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
package com.ruoyi.cms.domain.msg;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@ApiModel("求职招聘双方行为记录表")
|
||||
@TableName("hr_user_behavior_record")
|
||||
public class HrUserBehaviorRecord extends BaseEntity {
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/** 操作人类型:1求职者 2招聘方 */
|
||||
@ApiModelProperty("操作人类型:1求职者 2招聘方")
|
||||
private Integer actorType;
|
||||
|
||||
/** 操作人ID(求职者ID/企业用户ID) */
|
||||
@ApiModelProperty("操作人ID(求职者ID/企业用户ID) ")
|
||||
private Long actorId;
|
||||
|
||||
/** 浏览目标类型:1简历 2岗位 */
|
||||
@ApiModelProperty("浏览目标类型:1简历 2岗位")
|
||||
private Integer targetType;
|
||||
|
||||
/** 目标ID(简历ID/岗位ID) */
|
||||
@ApiModelProperty("目标ID(简历ID/岗位ID)")
|
||||
private Long targetId;
|
||||
|
||||
/** 行为类型:1阅览 2投递简历 */
|
||||
@ApiModelProperty("行为类型:1阅览 2投递简历")
|
||||
private Integer behaviorType;
|
||||
|
||||
/** 阅览时长(单位:秒) */
|
||||
@ApiModelProperty("阅览时长(单位:秒)")
|
||||
private Integer viewDuration;
|
||||
|
||||
/** 阅览次数,多次打开累加 */
|
||||
@ApiModelProperty("阅览次数,多次打开累加")
|
||||
private Integer viewNum;
|
||||
|
||||
/** 状态:1正常 */
|
||||
@ApiModelProperty("状态:1正常")
|
||||
private Integer behaviorStatus;
|
||||
|
||||
/**开始时间*/
|
||||
@TableField(exist = false)
|
||||
private String beginTime;
|
||||
|
||||
/**截至时间*/
|
||||
@TableField(exist = false)
|
||||
private String endTime;
|
||||
}
|
||||
Reference in New Issue
Block a user