根据线索信息查询面试信息
This commit is contained in:
@@ -82,5 +82,12 @@ public class HyPartnerInterviewPlanDAO {
|
||||
return hyPartnerInterviewPlanMapper.getPartnerInterviewInfoList(userId,workflowStage,workflowStatus);
|
||||
}
|
||||
|
||||
public Long selectInterviewIdByLineId(Long lineId){
|
||||
if (lineId==null){
|
||||
return 0L;
|
||||
}
|
||||
return hyPartnerInterviewPlanMapper.selectInterviewIdByLineId(lineId);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -94,6 +94,8 @@ public interface HyPartnerInterviewPlanMapper {
|
||||
*/
|
||||
EnterpriseUserBaseInfoVO getEnterpriseUserBaseInfo(@Param("userId") String userId);
|
||||
|
||||
Long selectInterviewIdByLineId(Long lineId);
|
||||
|
||||
/**
|
||||
* 根据条件字段查询面试安排信息
|
||||
* @param record
|
||||
|
||||
@@ -374,6 +374,10 @@
|
||||
|
||||
</select>
|
||||
|
||||
<select id="selectInterviewIdByLineId" resultType="java.lang.Long">
|
||||
select id from hy_partner_interview_plan where partner_line_id = #{lineId}
|
||||
</select>
|
||||
|
||||
<!-- 查询用户基本信息 -->
|
||||
<select id="getEnterpriseUserBaseInfo" resultType="com.cool.store.vo.EnterpriseUserBaseInfoVO">
|
||||
select name, mobile
|
||||
|
||||
Reference in New Issue
Block a user