123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.ruoyi.web.domain.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 就业数据收集
- *
- * @TableName employment_data
- */
- @TableName(value = "employment_data")
- @Data
- public class EmploymentData implements Serializable {
- /**
- * id
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 月份
- */
- private String months;
- /**
- * 提供岗位数量
- */
- private Integer positionNumber;
- /**
- * 录用人数
- */
- private Integer hireNumber;
- /**
- * 月薪范围下限
- */
- private String monthPayLow;
- /**
- * 月薪资范围上限
- */
- private String monthPayHigh;
- /**
- * 当前缺口岗位
- */
- private String shoragePosition;
- /**
- * 技能培训情况 1为是 0为否
- */
- private Integer skillTraining;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 修改时间
- */
- private Date updateTime;
- /**
- * 删除标志
- */
- @TableLogic
- @JsonIgnore
- private String delFlag;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- }
|