All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wuyu.module.hunter.entity.RecruitInputProcess Maven / Gradle / Ivy

package com.wuyu.module.hunter.entity;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import com.github.dennisit.vplus.core.anno.html.VHtml;
import com.github.dennisit.vplus.core.anno.table.VField;
import com.github.dennisit.vplus.core.anno.table.VTable;


@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@TableName("recruit_input_process")
@VTable(tableName = "recruit_input_process", comment = "简历投递审阅流程状态表")
public class RecruitInputProcess extends Model  {

    private static final long serialVersionUID = 1L;

    @VField(
        order = 2, column = "id", comment = "自增主键", primary = true,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
    )
    @TableField("id")
    private Long id;

    @VField(
        order = 4, column = "uuid", comment = "全局唯一键", primary = false,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
    )
    @TableField("uuid")
    private String uuid;

    @VField(
        order = 6, column = "input_id", comment = "简历投递编号", primary = false,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
    )
    @TableField("input_id")
    private Long inputId;

    @VField(
        order = 8, column = "process", comment = "简历投递进程状态 1投递未处理 5简历已审阅 10简历不合适 15面试流程中 20面试不通过 25 Offer发放 30已入职/拒绝入职流程结束", primary = false,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
    )
    @TableField("process")
    private Integer process;

    @VField(
        order = 10, column = "feed_back", comment = "用人单位反馈", primary = false,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
    )
    @TableField("feed_back")
    private String feedBack;

    @VField(
        order = 12, column = "feed_user_id", comment = "反馈人", primary = false,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
    )
    @TableField("feed_user_id")
    private Long feedUserId;

    @VField(
        order = 14, column = "create_time", comment = "创建时间", primary = false,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.DATETIME)
    )
    @TableField("create_time")
    private java.util.Date createTime;

    @VField(
        order = 16, column = "update_time", comment = "更新时间", primary = false,
        vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.DATETIME)
    )
    @TableField("update_time")
    private java.util.Date updateTime;


    @Override
    protected Serializable pkVal() {
        return this.id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy