您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ProductInterface.php 931B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Product;
  3. use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
  4. interface ProductInterface
  5. {
  6. public function getProductFamily(): ?ProductFamilyInterface;
  7. public function setProductFamily(?ProductFamilyInterface $productFamily
  8. ): \Lc\CaracoleBundle\Model\Product\ProductModel;
  9. public function getTitle(): ?string;
  10. public function setTitle(?string $title): \Lc\CaracoleBundle\Model\Product\ProductModel;
  11. public function getOriginProduct(): ?bool;
  12. public function setOriginProduct(?bool $originProduct): \Lc\CaracoleBundle\Model\Product\ProductModel;
  13. public function getExportTitle(): ?string;
  14. public function setExportTitle(?string $exportTitle): \Lc\CaracoleBundle\Model\Product\ProductModel;
  15. public function getExportNote(): ?string;
  16. public function setExportNote(?string $exportNote): \Lc\CaracoleBundle\Model\Product\ProductModel;
  17. }