Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.wuyu.module.hunter.entity.RecruitInput Maven / Gradle / Ivy
package com.wuyu.module.hunter.entity;
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;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@TableName("recruit_input")
@VTable(tableName = "recruit_input", comment = "简历投递信息")
public class RecruitInput 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 = "recruit_id", comment = "招聘职位编号", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("recruit_id")
private Long recruitId;
@VField(
order = 8, column = "recruit_user_id", comment = "招聘用户编号", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("recruit_user_id")
private Long recruitUserId;
@VField(
order = 10, column = "resume_id", comment = "简历编号", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("resume_id")
private Long resumeId;
@VField(
order = 12, column = "resume_user_id", comment = "简历投递人", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("resume_user_id")
private Long resumeUserId;
@VField(
order = 14, column = "input_type", comment = "投递类型 1系统简历 2附件简历", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("input_type")
private Integer inputType;
@VField(
order = 16, column = "input_process", comment = "执行状态", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("input_process")
private Integer inputProcess;
@VField(
order = 18, 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 = 20, 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;
}
}