修改积分商城报错
This commit is contained in:
parent
0d796f45d6
commit
56e27a925e
@ -4,6 +4,9 @@ import cn.iocoder.yudao.module.product.api.spu.dto.ProductSpuRespDTO;
|
|||||||
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertMap;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 商品 SPU API 接口
|
* 商品 SPU API 接口
|
||||||
@ -21,6 +24,16 @@ public interface ProductSpuApi {
|
|||||||
*/
|
*/
|
||||||
List<ProductSpuRespDTO> getSpuList(Collection<Long> ids);
|
List<ProductSpuRespDTO> getSpuList(Collection<Long> ids);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量查询 SPU MAP
|
||||||
|
*
|
||||||
|
* @param ids SPU 编号列表
|
||||||
|
* @return SPU MAP
|
||||||
|
*/
|
||||||
|
default Map<Long, ProductSpuRespDTO> getSpusMap(Collection<Long> ids) {
|
||||||
|
return convertMap(getSpuList(ids), ProductSpuRespDTO::getId);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量查询 SPU 数组,并且校验是否 SPU 是否有效。
|
* 批量查询 SPU 数组,并且校验是否 SPU 是否有效。
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user