change 4 gadi atpakaļ
vecāks
revīzija
6464305bfd

+ 4 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/recruit/vo/RecruitInterviewVo.java

@@ -184,5 +184,9 @@ public class RecruitInterviewVo {
 	@ApiModelProperty("投递时间")
 	private Long createTime;
 
+	@Excel(name = "公司id")
+	@ApiModelProperty("公司id")
+	private Long companyId;
+
 
 }

+ 3 - 1
zhongzheng-system/src/main/resources/mapper/modules/recruit/RecruitInterviewMapper.xml

@@ -62,6 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <result property="companyCity" column="company_city"/>
         <result property="companyProvince" column="company_province"/>
         <result property="companyAddress" column="company_address"/>
+        <result property="companyId" column="company_id"/>
     </resultMap>
 
     <resultMap type="com.zhongzheng.modules.recruit.vo.RecruitInterviewExcel" id="RecruitInterviewExcelResult">
@@ -237,7 +238,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         n.city as company_city,
         n.district as company_district,
         n.province as company_province,
-        n.address as company_address
+        n.address as company_address,
+        n.company_id
         FROM
             recruit_interview r
                 LEFT JOIN recruit_needs n ON r.needs_id = n.id