|
@@ -28,8 +28,10 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.Arrays;
|
|
|
import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* @author LHB
|
|
@@ -248,6 +250,12 @@ public class UStandardInfoServiceImpl extends ServiceImpl<StandardInfoMapper, US
|
|
|
return baseMapper.getElementJoin(id);
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<UStandardInfoPrivateJoinVO> effectPreview(String ids) {
|
|
|
+ List<Long> collect = Arrays.stream(ids.split(",")).map(Long::parseLong).collect(Collectors.toList());
|
|
|
+ return baseMapper.effectPreview(collect);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|