InformationRepository.php 331 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * 咨询管理
  4. * @author system
  5. * @version 1.0
  6. * @date 2018-05-14 13:23:56
  7. *
  8. */
  9. namespace App\Repositories\Album;
  10. use App\Repositories\Base\Repository;
  11. class InformationRepository extends Repository {
  12. public function model() {
  13. return \App\Models\AlbumInformationModel::class;
  14. }
  15. }