|
|
@ -31,7 +31,7 @@ import com.epmet.dto.CustomerGridDTO; |
|
|
|
import com.epmet.dto.GridLatestDTO; |
|
|
|
import com.epmet.dto.form.CustomerUserFormDTO; |
|
|
|
import com.epmet.dto.form.VisitedFormDTO; |
|
|
|
import com.epmet.dto.result.CustomerUserResultDTO; |
|
|
|
import com.epmet.dto.result.CustomerUser4PointResultDTO; |
|
|
|
import com.epmet.dto.result.LatestGridInfoResultDTO; |
|
|
|
import com.epmet.dto.result.UserBaseInfoResultDTO; |
|
|
|
import com.epmet.entity.GridLatestEntity; |
|
|
@ -182,9 +182,9 @@ public class GridLatestServiceImpl extends BaseServiceImpl<GridLatestDao, GridLa |
|
|
|
* @date 2020.07.25 16:15 |
|
|
|
**/ |
|
|
|
@Override |
|
|
|
public List<CustomerUserResultDTO> getCustomerUsers(CustomerUserFormDTO customerUserFormDTO) { |
|
|
|
public List<CustomerUser4PointResultDTO> getCustomerUsers(CustomerUserFormDTO customerUserFormDTO) { |
|
|
|
List<String> userIds = baseDao.selectAllUserByCustomerId(customerUserFormDTO.getCustomerId()); |
|
|
|
List<CustomerUserResultDTO> allData = new LinkedList<>(); |
|
|
|
List<CustomerUser4PointResultDTO> allData = new LinkedList<>(); |
|
|
|
if(null == userIds || userIds.isEmpty()){ |
|
|
|
return allData; |
|
|
|
} |
|
|
|