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.ResumeEdu 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("resume_edu")
@VTable(tableName = "resume_edu", comment = "简历-教育经验")
public class ResumeEdu 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 = "user_id", comment = "用户编号", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("user_id")
private Long userId;
@VField(
order = 8, column = "school_id", comment = "学校编号", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("school_id")
private Long schoolId;
@VField(
order = 10, column = "school_name", comment = "学校名称", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("school_name")
private String schoolName;
@VField(
order = 12, column = "major_name", comment = "专业名称", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("major_name")
private String majorName;
@VField(
order = 14, column = "degree", comment = "获得的学历", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("degree")
private String degree;
@VField(
order = 16, column = "start_time", comment = "开始时间", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.DATETIME)
)
@TableField("start_time")
private java.util.Date startTime;
@VField(
order = 18, column = "end_time", comment = "结束时间", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.DATETIME)
)
@TableField("end_time")
private java.util.Date endTime;
@VField(
order = 20, column = "enabled", comment = "有效性", primary = false,
vHtml = @VHtml(inList = true, inForm = true, inQuery = false, type = VHtml.Type.TEXT)
)
@TableField("enabled")
private Integer enabled;
@VField(
order = 22, 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 = 24, 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;
}
}