DictTypeService.php 980 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Laravel框架 [ Laravel ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2017~2021 Laravel研发中心
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://www.laravel.cn
  8. // +----------------------------------------------------------------------
  9. // | Author: wesmiler <12345678@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace App\Services;
  12. use App\Models\DictTypeModel;
  13. /**
  14. * 字典类型-服务类
  15. * @author wesmiler
  16. * @since 2020/11/11
  17. * Class DictTypeService
  18. * @package App\Services
  19. */
  20. class DictTypeService extends BaseService
  21. {
  22. /**
  23. * 构造函数
  24. * @author wesmiler
  25. * @since 2020/11/11
  26. * DictTypeService constructor.
  27. */
  28. public function __construct()
  29. {
  30. $this->model = new DictTypeModel();
  31. }
  32. }