package com.fdkankan.manage.entity; import com.baomidou.mybatisplus.annotation.*; import lombok.Getter; import lombok.Setter; import java.io.Serializable; /** *
* *
* * @author * @since 2022-06-30 */ @Getter @Setter @TableName("t_employ_note") public class EmployNote implements Serializable { private static final long serialVersionUID = 1L; /** * 招聘表 */ @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 职位名称 */ @TableField("work_name") private String workName; /** * 工作地点 */ @TableField("work_address") private String workAddress; /** * 薪资待遇 */ @TableField("salary") private String salary; /** * 招聘人数 */ @TableField("employ_num") private Integer employNum; /** * 是否发布 0 否,1是 */ @TableField("is_push") private Integer isPush; /** * 是否置顶 0否,1是 */ @TableField("is_top") private Integer isTop; /** * 工作职责 */ @TableField("work_content") private String workContent; /** * 任职资格 */ @TableField("qualification") private String qualification; @TableField("rec_status") @TableLogic(value = "A",delval = "I") private String recStatus; @TableField("create_time") private String createTime; @TableField("update_time") private String updateTime; }