会销开始面试修改为使用ExhibitionId

This commit is contained in:
feng.li
2023-12-07 16:55:44 +08:00
parent 221f480cd2
commit d32004de02
5 changed files with 23 additions and 24 deletions

View File

@@ -13,7 +13,7 @@ public class ExhibitionEnterInterviewDTO {
@ApiModelProperty("线索id")
private String partnerLineId;
@ApiModelProperty("会销编号")
private String exhibitionCode;
@ApiModelProperty("会销id")
private Integer exhibitionId;
}

View File

@@ -23,8 +23,8 @@ public class HyPartnerExhibitionDO implements Serializable {
@ApiModelProperty("")
private Long id;
@ApiModelProperty("报名的展会编号hy_exhibition.exhibition_code")
private String exhibitionCode;
@ApiModelProperty("报名的展会idhy_exhibition.id")
private Integer exhibitionId;
@ApiModelProperty("线索idhy_partner_line_info.id")
private Long partnerLineId;

View File

@@ -10,7 +10,6 @@ import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.time.DateUtils;
import java.util.ArrayList;
import java.util.Date;
@@ -173,8 +172,8 @@ public class PrivateSeaLineListVo {
//在会销面试中的线索
privateSeaLineListVo.setWhetherExhibitionInterview(Boolean.FALSE);
if (privateSeaLineListVo.getWhetherInExhibition()
&& ObjectUtils.isNotEmpty(exhibitionInterviewLines)
&& exhibitionInterviewLines.contains(x.getLineId())) {
&& ObjectUtils.isNotEmpty(exhibitionInterviewLines)
&& exhibitionInterviewLines.contains(x.getLineId())) {
privateSeaLineListVo.setWhetherExhibitionInterview(Boolean.TRUE);
}
privateSeaLineListVo.setUserPortraitList(userPortraitList);