updatePartnerUserInfo

This commit is contained in:
wxp01309236
2023-06-27 11:27:26 +08:00
parent 546ed06cff
commit 948b7ca63b
2 changed files with 4 additions and 0 deletions

View File

@@ -19,4 +19,7 @@ public class ApplyBaseInfoVO {
@ApiModelProperty("所选省内是否含有开放城市") @ApiModelProperty("所选省内是否含有开放城市")
private Boolean provinceHasOpenArea; private Boolean provinceHasOpenArea;
@ApiModelProperty("线索状态:0公海线索;1跟进中;2合作中;3黑名单")
private Integer lineStatus;
} }

View File

@@ -105,6 +105,7 @@ public class PartnerUserInfoServiceImpl implements PartnerUserInfoService {
if (CollectionUtils.isNotEmpty(hyOpenAreaInfoDOS)) { if (CollectionUtils.isNotEmpty(hyOpenAreaInfoDOS)) {
applyBaseInfoVO.setProvinceHasOpenArea(true); applyBaseInfoVO.setProvinceHasOpenArea(true);
} }
applyBaseInfoVO.setLineStatus(hyPartnerLineInfoDO.getLineStatus());
return applyBaseInfoVO; return applyBaseInfoVO;
} }