job表添加region_code字段

This commit is contained in:
sh
2026-01-22 16:07:59 +08:00
parent fe32de4791
commit 01ad333483
4 changed files with 13 additions and 0 deletions

View File

@@ -153,6 +153,9 @@ public class ESJobDocument
@ApiModelProperty("工作地点")
private String jobAddress;
@ApiModelProperty("工作地点")
private String regionCode;
@ApiModelProperty("公司信息")
@IndexField(fieldType = FieldType.TEXT)
private String companyVoJson;

View File

@@ -172,6 +172,9 @@ public class Job extends BaseEntity
@ApiModelProperty("工作地点")
private String jobAddress;
@ApiModelProperty("所属行政区划")
private String regionCode;
@TableField(exist = false)
@ApiModelProperty("岗位联系人列表")
private List<JobContact> jobContactList;