ProductRepository.php 323 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * 产品列表
  4. * @author system
  5. * @version 1.0
  6. * @date 2018-05-14 13:29:14
  7. *
  8. */
  9. namespace App\Repositories\Album;
  10. use App\Repositories\Base\Repository;
  11. class ProductRepository extends Repository {
  12. public function model() {
  13. return \App\Models\AlbumProductModel::class;
  14. }
  15. }