|
|
@ -48,6 +48,7 @@ import com.yxt.anrui.portal.api.sysuser.PrivilegeQuery; |
|
|
|
import com.yxt.anrui.portal.api.sysuser.SysUserFeign; |
|
|
|
import com.yxt.anrui.portal.api.sysuser.SysUserVo; |
|
|
|
import com.yxt.anrui.portal.api.sysuser.UserRoleQuery; |
|
|
|
import com.yxt.anrui.riskcenter.api.loancustomerrecord.LoanCustomerRecord; |
|
|
|
import com.yxt.anrui.riskcenter.api.loanfinotherPolicy.LoanFinOtherPolicy; |
|
|
|
import com.yxt.anrui.riskcenter.api.loanfinpolicyrecordapply.LoanFinPolicyRecordApply; |
|
|
|
import com.yxt.anrui.riskcenter.api.loanparameter.LoanParameter; |
|
|
@ -1431,6 +1432,11 @@ public class BaseDistributorService extends MybatisBaseService<BaseDistributorMa |
|
|
|
List<CrmCustomerTempListVo> crmCustomerTempListVos = crmCustomerTempFeign.selectCustomerList(crmCustomerTempListQuery).getData(); |
|
|
|
for (CrmCustomerTempListVo crmCustomerTempListVo : crmCustomerTempListVos) { |
|
|
|
AppDisAndCustm appDisAndCustm = new AppDisAndCustm(); |
|
|
|
//查询是否已备案
|
|
|
|
LoanCustomerRecord loanCustomerRecord = baseMapper.selectByRecord(crmCustomerTempListVo.getSid()); |
|
|
|
if(loanCustomerRecord == null){ |
|
|
|
continue; |
|
|
|
} |
|
|
|
Extra extra = new Extra(); |
|
|
|
appDisAndCustm.setDictValue(crmCustomerTempListVo.getName()); |
|
|
|
appDisAndCustm.setId(crmCustomerTempListVo.getSid()); |
|
|
|