use of com.fp.api.mall.product.model.OrderSkuBO in project FCLProject by FlowingCloudL.
the class RemoteSpuServiceImpl method getSpuBySkuId.
@Transactional
@Override
public OrderSpuBO getSpuBySkuId(Long skuId) {
// 获取SKU
SkuEntity skuEntity = skuMapper.getBySkuId(skuId);
OrderSkuBO orderSkuBO = new OrderSkuBO();
BeanUtils.copyProperties(skuEntity, orderSkuBO);
// 获取SPU
SpuEntity spuEntity = spuMapper.getBySpuId(skuEntity.getSpuId());
OrderSpuBO orderSpuBO = new OrderSpuBO();
BeanUtils.copyProperties(spuEntity, orderSpuBO);
// 设置SKU到SPU
orderSpuBO.setSkuBO(orderSkuBO);
return orderSpuBO;
}
Aggregations