FeedBackCategory.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\controller\api\user;
  12. use think\App;
  13. use crmeb\basic\BaseController;
  14. use app\common\repositories\user\FeedBackCategoryRepository as repository;
  15. class FeedBackCategory extends BaseController
  16. {
  17. protected $repository;
  18. public function __construct(App $app, repository $repository)
  19. {
  20. parent::__construct($app);
  21. $this->repository = $repository;
  22. }
  23. /**
  24. * 用户反馈列表
  25. * @return \think\response\Json
  26. * @author wuhaotian
  27. * @email 442384644@qq.com
  28. * @date 2024/7/10
  29. */
  30. public function lst()
  31. {
  32. return app('json')->success($this->repository->getFormatList(0,1));
  33. }
  34. }