AppRepository.php 307 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * 11
  4. * @author system
  5. * @version 1.0
  6. * @date 2018-07-26 01:43:25
  7. *
  8. */
  9. namespace App\Repositories\Wechat;
  10. use App\Repositories\Base\Repository;
  11. class AppRepository extends Repository {
  12. public function model() {
  13. return \App\Models\WechatAppModel::class;
  14. }
  15. }