DictTypeService.php 1000 B

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