|
@@ -46,7 +46,10 @@ public class TCorpsServiceImpl implements ITCorpsService {
|
|
|
if (StringUtils.isNull(tCorps)) {
|
|
|
map.put("corp", tCorps);
|
|
|
}
|
|
|
- List<TCustomerContact> customerContactList = tCustomerContactMapper.selectList(new EntityWrapper<TCustomerContact>().eq("f_pid", fId));
|
|
|
+ // List<TCustomerContact> customerContactList = tCustomerContactMapper.selectList(new EntityWrapper<TCustomerContact>().eq("f_pid", fId));
|
|
|
+ TCustomerContact tCustomerContact= new TCustomerContact();
|
|
|
+ tCustomerContact.setfPid(fId);
|
|
|
+ List<TCustomerContact> customerContactList =tCustomerContactMapper.selectTCustomerContactList(tCustomerContact);
|
|
|
if (StringUtils.isEmpty(customerContactList)) {
|
|
|
map.put("customerContact", customerContactList);
|
|
|
}
|