|
@@ -273,6 +273,11 @@ public class ProductInfoServiceImpl extends ServiceImpl<ProductInfoMapper, Produ
|
|
|
this.attributeAssign(Arrays.asList(result), ProductInfo::getRawMaterialId, (item, product) -> {
|
|
|
item.setRawMaterialCode(product.getCustomCode());
|
|
|
item.setRawMaterialName(product.getName());
|
|
|
+
|
|
|
+ item.setRawMaterialLength(product.getLength());
|
|
|
+ item.setRawMaterialWidth(product.getWidth());
|
|
|
+ item.setRawMaterialHeight(product.getHeight());
|
|
|
+ item.setRawMaterialColor(product.getColor());
|
|
|
});
|
|
|
|
|
|
|