|
@@ -1,6 +1,7 @@
|
|
|
package org.dromara.customer.service.impl;
|
|
package org.dromara.customer.service.impl;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
+import org.apache.dubbo.config.annotation.DubboReference;
|
|
|
import org.dromara.common.core.utils.MapstructUtils;
|
|
import org.dromara.common.core.utils.MapstructUtils;
|
|
|
import org.dromara.common.core.utils.StringUtils;
|
|
import org.dromara.common.core.utils.StringUtils;
|
|
|
import org.dromara.common.mybatis.core.page.TableDataInfo;
|
|
import org.dromara.common.mybatis.core.page.TableDataInfo;
|
|
@@ -13,6 +14,8 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
import org.dromara.customer.controller.SupplierInfoController;
|
|
import org.dromara.customer.controller.SupplierInfoController;
|
|
|
import org.dromara.customer.domain.SupplierInfo;
|
|
import org.dromara.customer.domain.SupplierInfo;
|
|
|
import org.dromara.customer.service.ISupplierInfoService;
|
|
import org.dromara.customer.service.ISupplierInfoService;
|
|
|
|
|
+import org.dromara.system.api.RemoteUserService;
|
|
|
|
|
+import org.dromara.system.api.domain.bo.RemoteUserBo;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.dromara.customer.domain.bo.SupplierContactBo;
|
|
import org.dromara.customer.domain.bo.SupplierContactBo;
|
|
|
import org.dromara.customer.domain.vo.SupplierContactVo;
|
|
import org.dromara.customer.domain.vo.SupplierContactVo;
|
|
@@ -41,6 +44,9 @@ public class SupplierContactServiceImpl extends ServiceImpl<SupplierContactMapp
|
|
|
|
|
|
|
|
private final ISupplierInfoService supplierInfoService;
|
|
private final ISupplierInfoService supplierInfoService;
|
|
|
|
|
|
|
|
|
|
+ @DubboReference
|
|
|
|
|
+ private RemoteUserService remoteUserService;
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 查询联系人
|
|
* 查询联系人
|
|
|
*
|
|
*
|