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

OrderPayment.php 369B

1234567891011121314151617
  1. <?php
  2. namespace Lc\ShopBundle\Model;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Lc\ShopBundle\Context\OrderPaymentInterface;
  5. use Lc\ShopBundle\Context\OrderPayoffInterface;
  6. use Lc\ShopBundle\Context\ReductionInterface;
  7. /**
  8. * @ORM\MappedSuperclass()
  9. */
  10. abstract class OrderPayment extends AbstractEntity implements OrderPayoffInterface
  11. {
  12. use OrderPayoffTrait;
  13. }