Files
anmo/server/app/coachapi/controller/GoodsCommentController.php
2025-08-19 14:16:51 +08:00

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();
}
}