1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package com.fdkankan.manage.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- /**
- * <p>
- *
- * </p>
- *
- * @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;
- }
|