EmploymentData.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.ruoyi.web.domain.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import com.fasterxml.jackson.annotation.JsonIgnore;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * 就业数据收集
  9. *
  10. * @TableName employment_data
  11. */
  12. @TableName(value = "employment_data")
  13. @Data
  14. public class EmploymentData implements Serializable {
  15. /**
  16. * id
  17. */
  18. @TableId(type = IdType.AUTO)
  19. private Integer id;
  20. /**
  21. * 月份
  22. */
  23. private String months;
  24. /**
  25. * 提供岗位数量
  26. */
  27. private Integer positionNumber;
  28. /**
  29. * 录用人数
  30. */
  31. private Integer hireNumber;
  32. /**
  33. * 月薪范围下限
  34. */
  35. private String monthPayLow;
  36. /**
  37. * 月薪资范围上限
  38. */
  39. private String monthPayHigh;
  40. /**
  41. * 当前缺口岗位
  42. */
  43. private String shoragePosition;
  44. /**
  45. * 技能培训情况 1为是 0为否
  46. */
  47. private Integer skillTraining;
  48. /**
  49. * 创建时间
  50. */
  51. private Date createTime;
  52. /**
  53. * 修改时间
  54. */
  55. private Date updateTime;
  56. /**
  57. * 删除标志
  58. */
  59. @TableLogic
  60. @JsonIgnore
  61. private String delFlag;
  62. @TableField(exist = false)
  63. private static final long serialVersionUID = 1L;
  64. }