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

22 行
735B

  1. <?php
  2. namespace Lc\ShopBundle\Repository;
  3. use Lc\ShopBundle\Context\DefaultRepositoryInterface;
  4. use Lc\ShopBundle\Context\PointSaleDayInfoInterface;
  5. /**
  6. * @method PointSaleDayInfoInterface|null find($id, $lockMode = null, $lockVersion = null)
  7. * @method PointSaleDayInfoInterface|null findOneBy(array $criteria, array $orderBy = null)
  8. * @method PointSaleDayInfoInterface[] findAll()
  9. * @method PointSaleDayInfoInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  10. */
  11. class PointSaleDayInfoRepository extends BaseRepository implements DefaultRepositoryInterface
  12. {
  13. public function getInterfaceClass()
  14. {
  15. return PointSaleDayInfoInterface::class;
  16. }
  17. }