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

17 行
418B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Order;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Lc\CaracoleBundle\Doctrine\Extension\OrderPayoffInterface;
  5. use Lc\CaracoleBundle\Doctrine\Extension\OrderPayoffTrait;
  6. use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity;
  7. /**
  8. * @ORM\MappedSuperclass()
  9. */
  10. abstract class OrderPaymentModel extends AbstractLightEntity implements OrderPayoffInterface
  11. {
  12. use OrderPayoffTrait;
  13. }