添加面试ID
This commit is contained in:
@@ -457,12 +457,14 @@
|
|||||||
hpuinfo.mobile as partnerUserPhone,
|
hpuinfo.mobile as partnerUserPhone,
|
||||||
hpuinfo.shop_name as storeName,
|
hpuinfo.shop_name as storeName,
|
||||||
hpuinfo.recommend_partner_name as recommendPartnerName,
|
hpuinfo.recommend_partner_name as recommendPartnerName,
|
||||||
eu.name as investmentManagerName
|
eu.name as investmentManagerName,
|
||||||
|
hpip.id as interviewPlanId
|
||||||
FROM
|
FROM
|
||||||
hy_partner_line_info hpli
|
hy_partner_line_info hpli
|
||||||
LEFT JOIN hy_partner_intent_info hpii ON hpli.id = hpii.partner_line_id
|
LEFT JOIN hy_partner_intent_info hpii ON hpli.id = hpii.partner_line_id
|
||||||
LEFT JOIN hy_partner_user_info hpuinfo ON hpli.partner_id = hpuinfo.partner_id
|
LEFT JOIN hy_partner_user_info hpuinfo ON hpli.partner_id = hpuinfo.partner_id
|
||||||
LEFT JOIN enterprise_user eu ON hpli.investment_manager = eu.user_id
|
LEFT JOIN enterprise_user eu ON hpli.investment_manager = eu.user_id
|
||||||
|
LEFT JOIN hy_partner_interview_plan hpip on hpli.id = hpip.partner_line_id
|
||||||
WHERE line_status in (1,2)
|
WHERE line_status in (1,2)
|
||||||
<if test="keyword!=null and keyword!='' and keywordType!=null and keywordType=='name'">
|
<if test="keyword!=null and keyword!='' and keywordType!=null and keywordType=='name'">
|
||||||
AND (eu.name like concat('%',#{keyword},'%') or hpuinfo.username like concat('%',#{keyword},'%'))
|
AND (eu.name like concat('%',#{keyword},'%') or hpuinfo.username like concat('%',#{keyword},'%'))
|
||||||
|
|||||||
@@ -69,4 +69,6 @@ public class PrivateSeaLineDTO {
|
|||||||
@ApiModelProperty("推荐加盟商名称")
|
@ApiModelProperty("推荐加盟商名称")
|
||||||
private String recommendPartnerName;
|
private String recommendPartnerName;
|
||||||
|
|
||||||
|
private Long interviewPlanId;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -83,6 +83,8 @@ public class PrivateSeaLineListVo {
|
|||||||
@ApiModelProperty("推荐加盟商名称")
|
@ApiModelProperty("推荐加盟商名称")
|
||||||
private String recommendPartnerName;
|
private String recommendPartnerName;
|
||||||
|
|
||||||
|
private Long interviewPlanId;
|
||||||
|
|
||||||
|
|
||||||
public static List<PrivateSeaLineListVo> convertList(List<PrivateSeaLineDTO> list, Map<String, String> finalDevManagerMap, Map<String, String> wantShopAreaNameMap){
|
public static List<PrivateSeaLineListVo> convertList(List<PrivateSeaLineDTO> list, Map<String, String> finalDevManagerMap, Map<String, String> wantShopAreaNameMap){
|
||||||
List<PrivateSeaLineListVo> resultList = new ArrayList<>();
|
List<PrivateSeaLineListVo> resultList = new ArrayList<>();
|
||||||
@@ -111,6 +113,7 @@ public class PrivateSeaLineListVo {
|
|||||||
privateSeaLineListVo.setInvestmentManager(x.getInvestmentManager());
|
privateSeaLineListVo.setInvestmentManager(x.getInvestmentManager());
|
||||||
privateSeaLineListVo.setRecommendPartnerName(x.getRecommendPartnerName());
|
privateSeaLineListVo.setRecommendPartnerName(x.getRecommendPartnerName());
|
||||||
privateSeaLineListVo.setWorkflowStage(x.getWorkflowStage());
|
privateSeaLineListVo.setWorkflowStage(x.getWorkflowStage());
|
||||||
|
privateSeaLineListVo.setInterviewPlanId(x.getInterviewPlanId());
|
||||||
privateSeaLineListVo.setWantShopArea(x.getWantShopArea());
|
privateSeaLineListVo.setWantShopArea(x.getWantShopArea());
|
||||||
privateSeaLineListVo.setWorkflowStage(x.getWorkflowStage());
|
privateSeaLineListVo.setWorkflowStage(x.getWorkflowStage());
|
||||||
privateSeaLineListVo.setDevelopmentManagerName(finalDevManagerMap.get(x.getDevelopmentManager()));
|
privateSeaLineListVo.setDevelopmentManagerName(finalDevManagerMap.get(x.getDevelopmentManager()));
|
||||||
|
|||||||
Reference in New Issue
Block a user