Compare commits
2
Commits
89e33e3713
...
c115f8b655
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c115f8b655 | ||
|
|
ab009d728a |
@@ -0,0 +1,13 @@
|
||||
package org.jiayunet.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.jiayunet.pojo.po.RecruitAnnouncementIndustry;
|
||||
|
||||
/**
|
||||
* 招聘公告-行业关联Mapper
|
||||
*
|
||||
* @author zk
|
||||
*/
|
||||
@Mapper
|
||||
public interface RecruitAnnouncementIndustryMapper extends CommonMapper<RecruitAnnouncementIndustry> {
|
||||
}
|
||||
@@ -22,7 +22,7 @@ public class RecruitAnnouncementBatch {
|
||||
/** 公告ID */
|
||||
private Long announcementId;
|
||||
|
||||
/** 批次值,如实习/暑期实习/寒假实习/秋招专场/春招提前批/春招补招 */
|
||||
/** 批次值,枚举:实习/暑期实习/寒假实习/秋招提前批/秋招正式批/秋招补招/春招提前批/春招正式批/春招补招/校园招聘/社招 */
|
||||
private String batchName;
|
||||
|
||||
/** 创建时间 */
|
||||
|
||||
@@ -22,7 +22,7 @@ public class RecruitAnnouncementCategory {
|
||||
/** 公告ID */
|
||||
private Long announcementId;
|
||||
|
||||
/** 岗位大类值,如IT技术/人工智能/通信 */
|
||||
/** 岗位分类值,取自固定分类表,如后端开发/人工智能/产品经理 */
|
||||
private String categoryName;
|
||||
|
||||
/** 创建时间 */
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
package org.jiayunet.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.Instant;
|
||||
|
||||
/**
|
||||
* 招聘公告-行业关联表(bg_recruit_announcement_industry)
|
||||
*
|
||||
* @author zk
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "bg_recruit_announcement_industry")
|
||||
public class RecruitAnnouncementIndustry {
|
||||
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
private Long id;
|
||||
|
||||
/** 公告ID */
|
||||
private Long announcementId;
|
||||
|
||||
/** 行业分类值,取自固定分类表,如互联网/人工智能/半导体/芯片 */
|
||||
private String industryName;
|
||||
|
||||
/** 创建时间 */
|
||||
private Instant createTime;
|
||||
}
|
||||
@@ -22,7 +22,7 @@ public class RecruitAnnouncementTag {
|
||||
/** 公告ID */
|
||||
private Long announcementId;
|
||||
|
||||
/** 标签值,如秋招提前批/竞争力薪酬/校招 */
|
||||
/** 标签值,如竞争力薪酬/六险一金/不限专业,不与批次、城市、学历重复 */
|
||||
private String tagName;
|
||||
|
||||
/** 创建时间 */
|
||||
|
||||
Reference in New Issue
Block a user