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

22 行
603B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Product;
  3. use App\Entity\Product\ProductFamily;
  4. use App\Entity\Section\Section;
  5. interface ProductFamilySectionPropertyInterface
  6. {
  7. public function getSection(): ?Section;
  8. public function setSection(?Section $section): ProductFamilySectionPropertyInterface;
  9. public function getProductFamily(): ?ProductFamily;
  10. public function setProductFamily(?ProductFamily $productFamily): ProductFamilySectionPropertyInterface;
  11. public function getStatus(): ?float;
  12. public function setStatus(float $status): ProductFamilySectionPropertyInterface;
  13. }