|
|
@ -9,6 +9,7 @@ import com.epmet.dto.user.result.CustomerStaffDTO; |
|
|
|
import com.epmet.service.DataReportingService; |
|
|
|
import com.epmet.service.org.CustomerAgencyService; |
|
|
|
import com.epmet.service.org.CustomerGridService; |
|
|
|
import com.epmet.service.user.UserService; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
@ -26,38 +27,40 @@ public class DataReportingServiceImpl implements DataReportingService { |
|
|
|
private CustomerAgencyService customerAgencyService; |
|
|
|
@Autowired |
|
|
|
private CustomerGridService customerGridService; |
|
|
|
@Autowired |
|
|
|
private UserService userService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author sun |
|
|
|
* @Description 批量查询客户组织基础信息 |
|
|
|
* |
|
|
|
* @return*/ |
|
|
|
**/ |
|
|
|
@Override |
|
|
|
public List<CustomerAgencyDTO> getAgencyBaseInfo(AgencyBaseInfoFormDTO formDTO) { |
|
|
|
//批量查询客户组织信息
|
|
|
|
return null; |
|
|
|
List<CustomerAgencyDTO> resultList = customerAgencyService.getAgencyBaseInfo(formDTO); |
|
|
|
return resultList; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author sun |
|
|
|
* @Description 批量查询客户网格基础信息 |
|
|
|
* |
|
|
|
* @return*/ |
|
|
|
**/ |
|
|
|
@Override |
|
|
|
public List<CustomerGridDTO> getGridBaseInfo(GridBaseInfoFormDTO formDTO) { |
|
|
|
//批量查询客户网格信息
|
|
|
|
return null; |
|
|
|
List<CustomerGridDTO> resultList = customerGridService.getGridBaseInfo(formDTO); |
|
|
|
return resultList; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author sun |
|
|
|
* @Description 批量查询客户网格人员基础信息 |
|
|
|
* |
|
|
|
* @return*/ |
|
|
|
**/ |
|
|
|
@Override |
|
|
|
public List<CustomerStaffDTO> getStaffBaseInfo(StaffBaseInfoFormDTO formDTO) { |
|
|
|
//批量查询客户网格人员信息
|
|
|
|
return null; |
|
|
|
List<CustomerStaffDTO> resultList = userService.getStaffBaseInfo(formDTO); |
|
|
|
return resultList; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|