32 lines
634 B
PHP
Executable File
32 lines
634 B
PHP
Executable File
<?php
|
|
namespace app\coachapi\controller;
|
|
|
|
|
|
use app\coachapi\logic\GoodsCommentLogic;
|
|
|
|
/**
|
|
* 订单评论金控制器类
|
|
* Class CoachController
|
|
* @package app\coachapi\controller
|
|
*/
|
|
class GoodsCommentController extends BaseCoachController
|
|
{
|
|
/**
|
|
* @notes 服务评价分类
|
|
* @return \think\response\Json
|
|
* @author ljj
|
|
* @date 2022/2/18 2:10 下午
|
|
*/
|
|
public function commentCategory()
|
|
{
|
|
$result = (new GoodsCommentLogic())->commentCategory($this->coachId);
|
|
return $this->success('',$result);
|
|
}
|
|
|
|
|
|
public function lists()
|
|
{
|
|
return $this->dataLists();
|
|
}
|
|
|
|
} |